1
0
mirror of https://github.com/iv-org/invidious.git synced 2025-02-16 01:02:15 +01:00
invidious/docker/Dockerfile.postgres

10 lines
178 B
Docker
Raw Normal View History

2018-09-26 09:46:08 +02:00
FROM postgres:10
ENV POSTGRES_USER postgres
ADD ./config/sql /config/sql
ADD ./docker/entrypoint.postgres.sh /entrypoint.sh
ENTRYPOINT [ "/entrypoint.sh" ]
CMD [ "postgres" ]