annotate trainingdb/Dockerfile @ 413:4b0c2c7e213b production v2.15.0

flow: Merged <release> '2.15.0' to <master> ('production').
author Marc Davis <marc.davis@mcoecn.org>
date Fri, 14 Oct 2022 10:20:38 -0400
parents 9129e39b00fa
children 9afc8cb478f6
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