diff options
| author | Esmail EL BoB <esmailelbob01124320019@pm.me> | 2019-01-25 12:48:10 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-25 12:48:10 +0200 |
| commit | 209d7117fb6a6306c4af73eb733cd8efcc845ace (patch) | |
| tree | a131eca2c417f69848a75462b5eebfd612fbc853 /docker/entrypoint.postgres.sh | |
| parent | 3751d11a0b534d215f57d5bb8c2692b7880e4cdc (diff) | |
| parent | 1af86f6afbba9a479f8d6a615c9f2a9d263d8c18 (diff) | |
| download | invidious-209d7117fb6a6306c4af73eb733cd8efcc845ace.tar.gz invidious-209d7117fb6a6306c4af73eb733cd8efcc845ace.tar.bz2 invidious-209d7117fb6a6306c4af73eb733cd8efcc845ace.zip | |
Merge branch 'master' into master
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 |
