cookiecutter-django/{{cookiecutter.repo_name}}/compose/django/entrypoint.sh

18 lines
814 B
Bash
Raw Normal View History

2015-07-16 18:43:02 +03:00
#!/bin/bash
set -e
# 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.
export REDIS_URL=redis://redis:6379/0
2015-07-16 18:43:02 +03:00
# the official postgres image uses 'postgres' as default user if not set explictly.
2015-07-16 18:43:02 +03:00
if [ -z "$POSTGRES_ENV_POSTGRES_USER" ]; then
export POSTGRES_ENV_POSTGRES_USER=postgres
fi
export DATABASE_URL=postgres://$POSTGRES_ENV_POSTGRES_USER:$POSTGRES_ENV_POSTGRES_PASSWORD@postgres:5432/$POSTGRES_ENV_POSTGRES_USER
{% if cookiecutter.use_celery == 'y' %}
export CELERY_BROKER_URL=$REDIS_URL
2015-07-16 18:43:02 +03:00
{% endif %}
exec "$@"