summaryrefslogtreecommitdiffstats
path: root/docker/entrypoint.postgres.sh
diff options
context:
space:
mode:
authorflourgaz <tuydekukno@ezehe.com>2018-09-26 09:46:08 +0200
committerflourgaz <tuydekukno@ezehe.com>2018-09-29 13:30:56 +0200
commit71a99542fe384697d06b4d482db4826b9cf06768 (patch)
treea8f07036b0d34a12bc943ba186c54deeb240e9f4 /docker/entrypoint.postgres.sh
parent29a6291957fc5e383c5f4f13a08c61b58e111617 (diff)
downloadinvidious-71a99542fe384697d06b4d482db4826b9cf06768.tar.gz
invidious-71a99542fe384697d06b4d482db4826b9cf06768.tar.bz2
invidious-71a99542fe384697d06b4d482db4826b9cf06768.zip
basic docker-compose cluster
Diffstat (limited to 'docker/entrypoint.postgres.sh')
-rwxr-xr-xdocker/entrypoint.postgres.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/docker/entrypoint.postgres.sh b/docker/entrypoint.postgres.sh
new file mode 100755
index 00000000..2f3ae65f
--- /dev/null
+++ b/docker/entrypoint.postgres.sh
@@ -0,0 +1,19 @@
+#!/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 "/setup.sh" && 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