add missing wait-for call
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
591857e2ba
commit
37b6df3996
@ -18,6 +18,8 @@ services:
|
||||
ports:
|
||||
- "80:8080"
|
||||
environment:
|
||||
BITWARDENRS_WAIT_FOR_HOST: bitwardenrs_postgres
|
||||
BITWARDENRS_WAIT_FOR_PORT: 5432
|
||||
BITWARDENRS_DATABASE_URL: postgresql://user:pass@bitwardenrs_postgres:5432/bitwarden
|
||||
BITWARDENRS_ADMIN_TOKEN: test
|
||||
|
||||
|
@ -3,9 +3,11 @@ set -eo pipefail
|
||||
|
||||
/usr/local/bin/gomplate -V -o /app/.env -f /etc/templates/env.tmpl
|
||||
|
||||
if [ -z "$BITWARDENRS_WAIT_FOR_HOST" ] && [ -z "$BITWARDENRS_WAIT_FOR_PORT" ]
|
||||
if [ ! -z "$BITWARDENRS_WAIT_FOR_HOST" ] && [ ! -z "$BITWARDENRS_WAIT_FOR_PORT" ]
|
||||
then
|
||||
exec /app/bitwarden_rs
|
||||
else
|
||||
exec ${BITWARDENRS_WAIT_FOR_HOST}:${BITWARDENRS_WAIT_FOR_PORT} -- /app/bitwarden_rs
|
||||
printf "Wait for ${BITWARDENRS_WAIT_FOR_HOST}:${BITWARDENRS_WAIT_FOR_PORT} ...\n"
|
||||
/usr/local/bin/wait-for ${BITWARDENRS_WAIT_FOR_HOST}:${BITWARDENRS_WAIT_FOR_PORT}
|
||||
fi
|
||||
|
||||
printf "Start Bitwarden Server ...\n"
|
||||
exec /app/bitwarden_rs
|
||||
|
Loading…
Reference in New Issue
Block a user