summaryrefslogtreecommitdiffstats
path: root/docker/entrypoint.postgres.sh
diff options
context:
space:
mode:
authorPerflyst <mail@perflyst.de>2020-08-03 17:09:51 +0200
committerGitHub <noreply@github.com>2020-08-03 17:09:51 +0200
commit0ad974c57b931f2b9bb97de8295d2e68fce61a6d (patch)
tree884f273142777e991ceefe94cc4c86175e406fb5 /docker/entrypoint.postgres.sh
parent62f015fc34194979ef2cbb5bfef2f8df608177bc (diff)
parente16d951da059c1a82eba7532b8a28dc51bcb7e21 (diff)
downloadinvidious-0ad974c57b931f2b9bb97de8295d2e68fce61a6d.tar.gz
invidious-0ad974c57b931f2b9bb97de8295d2e68fce61a6d.tar.bz2
invidious-0ad974c57b931f2b9bb97de8295d2e68fce61a6d.zip
Merge pull request #1211 from SuperSandro2000/improve-postgres
Improve postgres Dockerfile
Diffstat (limited to 'docker/entrypoint.postgres.sh')
-rwxr-xr-xdocker/entrypoint.postgres.sh30
1 files changed, 0 insertions, 30 deletions
diff --git a/docker/entrypoint.postgres.sh b/docker/entrypoint.postgres.sh
deleted file mode 100755
index be6f6782..00000000
--- a/docker/entrypoint.postgres.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/usr/bin/env bash
-
-CMD="$@"
-if [ ! -f /var/lib/postgresql/data/setupFinished ]; then
- echo "### first run - setting up invidious database"
- /usr/local/bin/docker-entrypoint.sh postgres &
- sleep 10
- until runuser -l postgres -c 'pg_isready' 2>/dev/null; do
- >&2 echo "### Postgres is unavailable - waiting"
- sleep 5
- done
- >&2 echo "### importing table schemas"
- su postgres -c 'createdb invidious'
- su postgres -c 'psql -c "CREATE USER kemal WITH PASSWORD '"'kemal'"'"'
- su postgres -c 'psql invidious kemal < config/sql/channels.sql'
- su postgres -c 'psql invidious kemal < config/sql/videos.sql'
- su postgres -c 'psql invidious kemal < config/sql/channel_videos.sql'
- su postgres -c 'psql invidious kemal < config/sql/users.sql'
- su postgres -c 'psql invidious kemal < config/sql/session_ids.sql'
- su postgres -c 'psql invidious kemal < config/sql/nonces.sql'
- su postgres -c 'psql invidious kemal < config/sql/annotations.sql'
- su postgres -c 'psql invidious kemal < config/sql/playlists.sql'
- su postgres -c 'psql invidious kemal < config/sql/playlist_videos.sql'
- touch /var/lib/postgresql/data/setupFinished
- echo "### invidious database setup finished"
- exit
-fi
-
-echo "running postgres /usr/local/bin/docker-entrypoint.sh $CMD"
-exec /usr/local/bin/docker-entrypoint.sh $CMD