1
0
mirror of https://github.com/iv-org/invidious.git synced 2024-12-24 06:49:37 -05:00
invidious/docker/Dockerfile.postgres

10 lines
178 B
Docker
Raw Normal View History

2018-09-26 03:46:08 -04: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" ]