8 lines
225 B
Docker
8 lines
225 B
Docker
FROM postgres:9.6
|
|
LABEL maintainer = "aj-foster@pluralsight.com"
|
|
EXPOSE 5432
|
|
|
|
COPY seed.sql /docker-entrypoint-initdb.d/
|
|
|
|
# Not needed since it's in the base images, but makes it more visible.
|
|
VOLUME /var/lib/postgresql/data
|