Dockerfile 225 B

12345678
  1. FROM postgres:9.6
  2. LABEL maintainer = "aj-foster@pluralsight.com"
  3. EXPOSE 5432
  4. COPY seed.sql /docker-entrypoint-initdb.d/
  5. # Not needed since it's in the base images, but makes it more visible.
  6. VOLUME /var/lib/postgresql/data