mirror of
https://github.com/iv-org/invidious
synced 2024-11-12 22:23:38 +01:00
6901d10d54
instead of doing it ourselves
12 lines
298 B
Docker
12 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" ]
|