mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
When starting with an external DB, start it for a bit first to allow its setup to complete
This commit is contained in:
parent
0fb553675b
commit
26d6f302cf
@ -384,6 +384,14 @@ fi
|
|||||||
|
|
||||||
${DOCKER_COMPOSE_CMD} pull
|
${DOCKER_COMPOSE_CMD} pull
|
||||||
|
|
||||||
|
if [ "$DATABASE_BACKEND" == "postgres" ] || [ "$DATABASE_BACKEND" == "mariadb" ] ; then
|
||||||
|
echo "Starting DB first for initilzation"
|
||||||
|
${DOCKER_COMPOSE_CMD} up --detach db
|
||||||
|
# hopefully enough time for even the slower systems
|
||||||
|
sleep 15
|
||||||
|
${DOCKER_COMPOSE_CMD} stop
|
||||||
|
fi
|
||||||
|
|
||||||
${DOCKER_COMPOSE_CMD} run --rm -e DJANGO_SUPERUSER_PASSWORD="$PASSWORD" webserver createsuperuser --noinput --username "$USERNAME" --email "$EMAIL"
|
${DOCKER_COMPOSE_CMD} run --rm -e DJANGO_SUPERUSER_PASSWORD="$PASSWORD" webserver createsuperuser --noinput --username "$USERNAME" --email "$EMAIL"
|
||||||
|
|
||||||
${DOCKER_COMPOSE_CMD} up --detach
|
${DOCKER_COMPOSE_CMD} up --detach
|
||||||
|
Loading…
x
Reference in New Issue
Block a user