Mercurial > public > ssdt-docker
comparison trainingdb/Dockerfile @ 36:a5175713518c
add training db images
author | smith@nwoca.org |
---|---|
date | Wed, 20 Jan 2016 13:47:23 -0500 |
parents | |
children | 297b56dfba19 |
comparison
equal
deleted
inserted
replaced
35:1c74d1289739 | 36:a5175713518c |
---|---|
1 # | |
2 # Docker file to create postgres image for ssdt applications | |
3 | |
4 FROM docker.ssdt.io/ssdt-postgres:2 | |
5 | |
6 MAINTAINER Dave Smith smith@nwoca.org | |
7 | |
8 ENV PGDATA=/var/pgdata/trainingdata \ | |
9 BACKUP_FILE=/training.backup.gz | |
10 | |
11 COPY setupDatabase.sh /docker-entrypoint-initdb.d/ | |
12 | |
13 RUN chmod 755 /docker-entrypoint-initdb.d/setupDatabase.sh |