18 lines
641 B
Bash
18 lines
641 B
Bash
|
# Database
|
||
|
POSTGRES_USER=root # The PostgreSQL user (useful to connect to the database)
|
||
|
POSTGRES_PASSWORD=<changeme> # The PostgreSQL password (useful to connect to the database)
|
||
|
POSTGRES_DB=n8n # The PostgreSQL default database (automatically created at first launch)
|
||
|
|
||
|
#N8N
|
||
|
N8N_BASIC_AUTH_ACTIVE=true
|
||
|
N8N_BASIC_AUTH_USER=admin
|
||
|
N8N_BASIC_AUTH_PASSWORD=<default_login_password>
|
||
|
N8N_DIAGNOSTICS_ENABLED=false
|
||
|
N8N_HIRING_BANNER_ENABLED=false
|
||
|
N8N_HIDE_USAGE_PAGE=true
|
||
|
DB_TYPE=postgresdb
|
||
|
DB_POSTGRESDB_HOST=n8n-db-postgres
|
||
|
DB_POSTGRESDB_PASSWORD=<db_password>
|
||
|
EXECUTIONS_DATA_PRUNE=true
|
||
|
EXECUTIONS_DATA_MAX_AGE=24
|
||
|
GENERIC_TIMEZONE=America/Chicago
|