Environment variables

In the environment file whose path is provided in the compose.yml installation file, for example mycompany.env, the local environment variables must be setup:

# Settings for Postgres Docker image
##########################################
# Set the initial superuser password
POSTGRES_PASSWORD=<passwd>

# General environment settings for development
##############################################
# Set the domain for this Docker setup
DOMAIN=<medialoopster.mycompany.de>

# Settings for the Django installation
######################################
# Set the path to the settings module. This is required by all services which use the django project.
DJANGO_SETTINGS_MODULE=medialoopster.settings.custom
# Set the database connection, host must be the same as PGHOST
DATABASE_URL=psql://medialoopster:<passwd>@postgres:5432/medialoopster
# Set the sentry key
DJANGO_SENTRY_DSN=

DJANGO_ALLOWED_HOSTS=[<medialoopster.mycompany.de>]

#waitforpostgres
POSTGRES_HOST=postgres
POSTGRES_PORT=5432

BROKER_DOMAIN=rabbitmq
BROKER_PORT=5672
BROKER_USER=guest
BROKER_PASSWORD=guest
# Required for flower
CELERY_BROKER_URL=amqp://guest:guest@rabbitmq:5672//

#License Client
LICENSE_RABBITMQ=rabbitmq

MEDIALOOPSTER_USER=501


# The directory where XSLT files are uploaded to.
XSLT_ROOT=/mnt/medialoopster/xslt/