Browse Source
Merge pull request #3 from n8n-io/fix-docker-compose-worker-encryption-key
Fix docker compose worker encryption key
develop
Marcus
6 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
3 additions and
0 deletions
-
docker-compose/withPostgresAndWorker/.env
-
docker-compose/withPostgresAndWorker/docker-compose.yml
|
@ -4,3 +4,5 @@ POSTGRES_DB=n8n |
|
|
|
|
|
|
|
|
POSTGRES_NON_ROOT_USER=changeUser |
|
|
POSTGRES_NON_ROOT_USER=changeUser |
|
|
POSTGRES_NON_ROOT_PASSWORD=changePassword |
|
|
POSTGRES_NON_ROOT_PASSWORD=changePassword |
|
|
|
|
|
|
|
|
|
|
|
ENCRYPTION_KEY=changeEncryptionKey |
|
|
|
@ -18,6 +18,7 @@ x-shared: &shared |
|
|
- EXECUTIONS_MODE=queue |
|
|
- EXECUTIONS_MODE=queue |
|
|
- QUEUE_BULL_REDIS_HOST=redis |
|
|
- QUEUE_BULL_REDIS_HOST=redis |
|
|
- QUEUE_HEALTH_CHECK_ACTIVE=true |
|
|
- QUEUE_HEALTH_CHECK_ACTIVE=true |
|
|
|
|
|
- N8N_ENCRYPTION_KEY=${ENCRYPTION_KEY} |
|
|
links: |
|
|
links: |
|
|
- postgres |
|
|
- postgres |
|
|
- redis |
|
|
- redis |
|
|