Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save gokman/ff03c74b4b22a247e386e073011c2796 to your computer and use it in GitHub Desktop.

Select an option

Save gokman/ff03c74b4b22a247e386e073011c2796 to your computer and use it in GitHub Desktop.
dockerize postgresql (sample dockerfile)
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