1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-06 03:50:26 +02:00

Fix PostreSQL initialization for Gitpod

This commit is contained in:
Jan Keromnes 2020-12-05 12:24:33 +01:00 committed by Rigel Kent
parent 95bd9515b8
commit ef62d58674
2 changed files with 8 additions and 8 deletions

View file

@ -9,7 +9,3 @@ RUN sudo apt-get update -q && sudo apt-get install -qy \
ffmpeg \
openssl \
redis-server
# Set up PostgreSQL.
COPY --chown=gitpod:gitpod support/docker/gitpod/setup_postgres.sql /tmp/
RUN pg_start && psql -h localhost -d postgres --file=/tmp/setup_postgres.sql && pg_stop