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: 2 additions & 2 deletions docker-compose.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ services:
- N8N_BLOCKED_NODES=n8n-nodes-base.executeCommand,n8n-nodes-base.ssh
Comment thread
SashkoMarchuk marked this conversation as resolved.
- 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}
volumes:
- n8n_data:/data/n8n
Comment thread
SashkoMarchuk marked this conversation as resolved.
postgresql: !reset null

temporal:
Expand Down
3 changes: 1 addition & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ 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
- N8N_BLOCK_ENV_ACCESS_IN_NODE=false
Comment thread
SashkoMarchuk marked this conversation as resolved.
- SEMBLY_USER=${SEMBLY_USER:-sembly_user}
- SEMBLY_PASS=${SEMBLY_PASS:-sembly_pass}
- N8N_LOG_LEVEL=debug
Expand Down