Created
May 16, 2017 05:44
-
-
Save gokman/ff03c74b4b22a247e386e073011c2796 to your computer and use it in GitHub Desktop.
dockerize postgresql (sample dockerfile)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM postgres:9.6 | |
| MAINTAINER gokhankcmn@gmail.com | |
| RUN mkdir /sql | |
| COPY create.sql /sql/ | |
| COPY insert.sql /sql/ | |
| EXPOSE 5433/tcp | |
| VOLUME /var/lib/postgresql/data |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment