Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docker-compose.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ services:
- N8N_BLOCKED_NODES=n8n-nodes-base.executeCommand,n8n-nodes-base.ssh
- N8N_DEFAULT_BINARY_DATA_MODE=filesystem
- N8N_BINARY_DATA_STORAGE_PATH=/data/n8n/binaryData
# Allowlist specific safe environment variables for node access
- N8N_ENV_ACCESS_ALLOWED=SEMBLY_USER,SEMBLY_PASS
- SEMBLY_USER=${SEMBLY_USER:?SEMBLY_USER is required}
- SEMBLY_PASS=${SEMBLY_PASS:?SEMBLY_PASS is required}
postgresql: !reset null

temporal:
Expand Down
4 changes: 4 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ services:
- DB_POSTGRESDB_DATABASE=${POSTGRES_DB_N8N:-n8n}
- DB_POSTGRESDB_USER=${POSTGRES_USER_N8N:-n8n}
- DB_POSTGRESDB_PASSWORD=${POSTGRES_PASSWORD_N8N:-n8n_password}
# Block $env access in nodes for security (default: true)
- N8N_BLOCK_ENV_ACCESS_IN_NODE=true
- SEMBLY_USER=${SEMBLY_USER:-sembly_user}
- SEMBLY_PASS=${SEMBLY_PASS:-sembly_pass}
- N8N_LOG_LEVEL=debug
- N8N_LOG_OUTPUT=console
- TZ=${TZ:-America/New_York}
Expand Down