vaultwarden/overlay/usr/local/bin/entrypoint

18 lines
456 B
Plaintext
Raw Normal View History

2020-02-01 18:34:59 +01:00
#!/usr/bin/env sh
2020-02-01 23:14:37 +01:00
set -eo
2020-02-01 18:34:59 +01:00
/usr/local/bin/gomplate -V -o /app/.env -f /etc/templates/env.tmpl
if [ "$BITWARDENRS_WAITFOR_ENABLED" = true ]
2020-02-01 18:34:59 +01:00
then
WAITFOR_HOST=$(url-parse host --url "$BITWARDENRS_DATABASE_URL")
WAITFOR_PORT=$(url-parse port --url "$BITWARDENRS_DATABASE_URL")
2020-02-01 23:14:37 +01:00
printf "Wait for database server ...\n"
/usr/local/bin/wait-for "${WAITFOR_HOST}":"${WAITFOR_PORT:-5432}"
2020-02-01 18:34:59 +01:00
fi
2020-02-01 19:09:53 +01:00
printf "Start Bitwarden Server ...\n"
exec /app/bitwarden_rs