mirror of
https://gitea.invidious.io/iv-org/invidious.git
synced 2024-08-15 00:53:41 +00:00
6901d10d54
instead of doing it ourselves
11 lines
298 B
Docker
11 lines
298 B
Docker
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" ]
|