summaryrefslogtreecommitdiffstats
path: root/docker/entrypoint.postgres.sh
diff options
context:
space:
mode:
authorOmar Roth <omarroth@hotmail.com>2019-02-16 09:57:09 -0600
committerGitHub <noreply@github.com>2019-02-16 09:57:09 -0600
commit6a8a49d8efec065d7d2745d6bc66a4319546798e (patch)
treebcc1806159e28ba6d7ddd8fdd8ecf492a39d11e4 /docker/entrypoint.postgres.sh
parent7e2954c325d7ee0303de3197cdfebd616bf0a9d5 (diff)
parent27663b10a256cd3ddb31b3b5e013daeaf577155f (diff)
downloadinvidious-6a8a49d8efec065d7d2745d6bc66a4319546798e.tar.gz
invidious-6a8a49d8efec065d7d2745d6bc66a4319546798e.tar.bz2
invidious-6a8a49d8efec065d7d2745d6bc66a4319546798e.zip
Merge branch 'master' into 347-screenshots
Diffstat (limited to 'docker/entrypoint.postgres.sh')
-rwxr-xr-xdocker/entrypoint.postgres.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/docker/entrypoint.postgres.sh b/docker/entrypoint.postgres.sh
index 9a258dd6..8f987201 100755
--- a/docker/entrypoint.postgres.sh
+++ b/docker/entrypoint.postgres.sh
@@ -16,6 +16,7 @@ if [ ! -f /var/lib/postgresql/data/setupFinished ]; then
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/session_ids.sql'
su postgres -c 'psql invidious < config/sql/nonces.sql'
touch /var/lib/postgresql/data/setupFinished
echo "### invidious database setup finished"