mirror of
https://github.com/joaovitoriasilva/endurain.git
synced 2026-01-10 08:17:59 -05:00
Docker compose ends up in errors without the PGDATA env. Docs also state it is required, but missing in the default .env file
16 lines
584 B
Plaintext
16 lines
584 B
Plaintext
# This is an environment variable file for Endurain's docker-compose.yml.example
|
|
# These are just the variable you have to set to be up and running.
|
|
# There is many more variable you could set. Check them out here: https://docs.endurain.com/getting-started/advanced-started/#supported-environment-variables
|
|
|
|
DB_PASSWORD=changeme
|
|
POSTGRES_PASSWORD=changeme
|
|
SECRET_KEY=changeme
|
|
FERNET_KEY=changeme
|
|
GEOCODES_MAPS_API=changeme
|
|
TZ=Europe/Lisbon
|
|
ENDURAIN_HOST=https://endurain.example.com
|
|
BEHIND_PROXY=true
|
|
POSTGRES_DB=endurain
|
|
POSTGRES_USER=endurain
|
|
PGDATA=/var/lib/postgresql/data/pgdata
|