annotate trainingdb/Dockerfile @ 268:26e44fb3cb79 release/v2.2.0

flow: Created branch 'release/v2.2.0'.
author smith@nwoca.org
date Mon, 12 Nov 2018 21:24:01 +0000
parents 9129e39b00fa
children
rev   line source
36
a5175713518c add training db images
smith@nwoca.org
parents:
diff changeset
1
198
9129e39b00fa DEP-12: update training db scripts
smith@nwoca.org
parents: 82
diff changeset
2 FROM docker.ssdt.io/ssdt-postgres:5
36
a5175713518c add training db images
smith@nwoca.org
parents:
diff changeset
3
a5175713518c add training db images
smith@nwoca.org
parents:
diff changeset
4 MAINTAINER Dave Smith smith@nwoca.org
a5175713518c add training db images
smith@nwoca.org
parents:
diff changeset
5
a5175713518c add training db images
smith@nwoca.org
parents:
diff changeset
6 ENV PGDATA=/var/pgdata/trainingdata \
a5175713518c add training db images
smith@nwoca.org
parents:
diff changeset
7 BACKUP_FILE=/training.backup.gz
a5175713518c add training db images
smith@nwoca.org
parents:
diff changeset
8
39
297b56dfba19 add training compose file
smith@nwoca.org
parents: 36
diff changeset
9 COPY setupDatabase.sh /docker-entrypoint-initdb.d/setupDatabase.sh
36
a5175713518c add training db images
smith@nwoca.org
parents:
diff changeset
10
a5175713518c add training db images
smith@nwoca.org
parents:
diff changeset
11 RUN chmod 755 /docker-entrypoint-initdb.d/setupDatabase.sh