mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-10 09:07:48 +01:00
Update postgres entrypoint for docker image
This commit is contained in:
parent
952b208a01
commit
4c77908bb4
2 changed files with 8 additions and 2 deletions
|
@ -2,7 +2,6 @@ FROM postgres:10
|
||||||
|
|
||||||
ENV POSTGRES_USER postgres
|
ENV POSTGRES_USER postgres
|
||||||
|
|
||||||
ADD ./setup.sh /setup.sh
|
|
||||||
ADD ./config/sql /config/sql
|
ADD ./config/sql /config/sql
|
||||||
ADD ./docker/entrypoint.postgres.sh /entrypoint.sh
|
ADD ./docker/entrypoint.postgres.sh /entrypoint.sh
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,14 @@ if [ ! -f /var/lib/postgresql/data/setupFinished ]; then
|
||||||
sleep 5
|
sleep 5
|
||||||
done
|
done
|
||||||
>&2 echo "### importing table schemas"
|
>&2 echo "### importing table schemas"
|
||||||
su postgres -c "/setup.sh" && touch /var/lib/postgresql/data/setupFinished
|
su postgres -c 'createdb invidious'
|
||||||
|
su postgres -c 'psql -c "CREATE USER kemal WITH PASSWORD '"'kemal'"'"'
|
||||||
|
su postgres -c 'psql invidious < config/sql/channels.sql'
|
||||||
|
su postgres -c 'psql invidious < config/sql/videos.sql'
|
||||||
|
su postgres -c 'psql invidious < config/sql/channel_videos.sql'
|
||||||
|
su postgres -c 'psql invidious < config/sql/users.sql'
|
||||||
|
su postgres -c 'psql invidious < config/sql/nonces.sql'
|
||||||
|
touch /var/lib/postgresql/data/setupFinished
|
||||||
echo "### invidious database setup finished"
|
echo "### invidious database setup finished"
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue