Mercurial > public > ssdt-docker
view postgres/Dockerfile @ 47:a0283d218ff5
handle training instances with prefix in directory name. use docker-compose.yml as template instead of linking. set application property to reduce memory requirements
author | smith@nwoca.org |
---|---|
date | Thu, 04 Feb 2016 22:39:09 +0000 |
parents | 82b5ed864aee |
children | 5c093612ce89 |
line wrap: on
line source
# # Docker file to create postgres image for ssdt applications FROM postgres:9.4.5 MAINTAINER Dave Smith smith@nwoca.org ENV DB_NAME=database \ DB_USER=dbuser \ DB_PASS=dbpassword \ PGDATA=/var/lib/postgresql/data/pgdata COPY setupDatabase.sh /docker-entrypoint-initdb.d/setupDatabase.sh RUN chmod 755 /docker-entrypoint-initdb.d/setupDatabase.sh