* [FIX] DOCKER: Update docker files to standardize the dev and prod Docker image * [FIX] DOCKER: Fix docker configuration of Horilla for runtime errors * [FIX] Standardise and reduce Docker configuration of Horilla * [UPDT] DOCKER: Standardise directory structure of Docker and related files for Horilla standards (#934) * Multi stage Dockerfile for size reduction
20 lines
395 B
Plaintext
20 lines
395 B
Plaintext
# Django
|
|
DJANGO_SETTINGS_MODULE=horilla.settings
|
|
SECRET_KEY=change-me
|
|
DEBUG=False
|
|
ALLOWED_HOSTS=*
|
|
|
|
# Database (used by compose to form DATABASE_URL)
|
|
POSTGRES_DB=horilla
|
|
POSTGRES_USER=horilla
|
|
POSTGRES_PASSWORD=horilla
|
|
|
|
# Optional: storage/other
|
|
# AWS_ACCESS_KEY_ID=
|
|
# AWS_SECRET_ACCESS_KEY=
|
|
# AWS_STORAGE_BUCKET_NAME=
|
|
|
|
# Redis Cache
|
|
REDIS_PASSWORD=horilla
|
|
REDIS_URL=redis://:horilla@redis:6379/0
|