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
parent
commit
d6e9a7154a
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      docker-compose/withPostgresAndWorker/.env
  2. 1
      docker-compose/withPostgresAndWorker/docker-compose.yml

2
docker-compose/withPostgresAndWorker/.env

@ -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

1
docker-compose/withPostgresAndWorker/docker-compose.yml

@ -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

Loading…
Cancel
Save