6 lines
178 B
Docker
6 lines
178 B
Docker
ARG postgres_version=9.3
|
|
FROM postgres:${postgres_version}
|
|
ADD setup.sql /docker-entrypoint-initdb.d
|
|
RUN chown -R postgres:postgres /docker-entrypoint-initdb.d/
|
|
CMD ["postgres"]
|