funkwhale/api/compose/django/entrypoint.sh

18 wiersze
733 B
Bash
Czysty Zwykły widok Historia

#!/bin/sh
2022-11-24 20:14:59 +00:00
set -e
2022-11-24 20:14:59 +00:00
# This entrypoint is used to play nicely with the current cookiecutter configuration.
# Since docker-compose relies heavily on environment variables itself for configuration, we'd have to define multiple
# environment variables just to support cookiecutter out of the box. That makes no sense, so this little entrypoint
# does all this for us.
if [ -z "$DATABASE_URL" ]; then
2022-11-24 00:32:57 +00:00
# the official postgres image uses 'postgres' as default user if not set explicitly.
if [ -z "$POSTGRES_ENV_POSTGRES_USER" ]; then
export POSTGRES_ENV_POSTGRES_USER=postgres
fi
2022-11-24 20:14:59 +00:00
export DATABASE_URL="postgres://$POSTGRES_ENV_POSTGRES_USER:$POSTGRES_ENV_POSTGRES_PASSWORD@postgres:5432/$POSTGRES_ENV_POSTGRES_USER"
fi
2022-11-24 20:14:59 +00:00
exec "$@"