HedgeDoc - Fix 1/x

This commit is contained in:
KsmoinO 2022-11-19 14:33:42 +01:00
parent 219c4c5110
commit d18a024741
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -69,7 +69,7 @@ if ! podman image exists ${hedgedoc_image}:${hedgedoc_version}; then
podman image pull ${hedgedoc_image}:${hedgedoc_version} || exit 1
fi
if ! podman image exists ${database_image}:${database_version}; then
podman pull ${database_image}:${database_version} &&
podman pull ${database_image}:${database_version} || exit 1
fi
podman-compose --pod-args="--infra=true --infra-name=${project_name}_infra --share=" --podman-run-args "--requires=${project_name}_infra --env-file .env" up -d &&
echo -n "Waiting for hedgedoc to finish starting " &&