diff options
| author | Omar Roth <omarroth@hotmail.com> | 2019-01-24 19:02:09 -0600 |
|---|---|---|
| committer | Omar Roth <omarroth@hotmail.com> | 2019-01-24 19:02:09 -0600 |
| commit | 4c77908bb492e6d9ee567bd4c2b2fe78e63aae33 (patch) | |
| tree | 6ef32d9211808ee3975dbe185a5115387a7642be /docker/entrypoint.postgres.sh | |
| parent | 952b208a016548ad917737848cf3031e3f8af2d6 (diff) | |
| download | invidious-4c77908bb492e6d9ee567bd4c2b2fe78e63aae33.tar.gz invidious-4c77908bb492e6d9ee567bd4c2b2fe78e63aae33.tar.bz2 invidious-4c77908bb492e6d9ee567bd4c2b2fe78e63aae33.zip | |
Update postgres entrypoint for docker image
Diffstat (limited to 'docker/entrypoint.postgres.sh')
| -rwxr-xr-x | docker/entrypoint.postgres.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/docker/entrypoint.postgres.sh b/docker/entrypoint.postgres.sh index 2f3ae65f..9a258dd6 100755 --- a/docker/entrypoint.postgres.sh +++ b/docker/entrypoint.postgres.sh @@ -10,7 +10,14 @@ if [ ! -f /var/lib/postgresql/data/setupFinished ]; then sleep 5 done >&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" exit fi |
