blob: 19b046674059eec0a614d53b18b9e52da043a74c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
FROM postgres:10
# Do not require a PostgreSQL superuser password.
# See https://github.com/docker-library/postgres/issues/681.
ENV POSTGRES_HOST_AUTH_METHOD trust
ADD ./config/sql /config/sql
ADD ./docker/entrypoint.postgres.sh /entrypoint.sh
ENTRYPOINT [ "/entrypoint.sh" ]
CMD [ "postgres" ]
|