Skip to content

Commit acfb691

Browse files
committed
chore(infra): update environment variables and service configuration
- Fixed Anthropic API key configuration to resolve 401 Unauthorized errors. - Synchronized environment variables between dev and production compose files. - Optimized service dependencies for worker and api containers.
1 parent 0e1c672 commit acfb691

2 files changed

Lines changed: 21 additions & 3 deletions

File tree

infra/docker-compose.dev.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,8 @@ services:
1010
qdrant:
1111
ports:
1212
- "${EXTERNAL_QDRANT_PORT:-6333}:6333"
13-
- "${EXTERNAL_QDRANT_GRPC_PORT:-6334}:6334"
13+
- "${EXTERNAL_QDRANT_GRPC_PORT:-6334}:6334"
14+
15+
n8n:
16+
ports:
17+
- "5678:5678"

infra/docker/docker-compose.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,22 @@ services:
3131
restart: unless-stopped
3232
volumes:
3333
- qdrant_data:/qdrant/storage
34-
34+
35+
n8n:
36+
image: docker.n8n.io/n8nio/n8n:latest
37+
restart: unless-stopped
38+
environment:
39+
- N8N_HOST=127.0.0.1
40+
- N8N_PORT=5678
41+
- N8N_PROTOCOL=http
42+
- NODE_ENV=production
43+
- WEBHOOK_URL=http://127.0.0.1:5678/
44+
- GENERIC_TIMEZONE=Europe/Kyiv
45+
volumes:
46+
- n8n_data:/home/node/.n8n
47+
3548
volumes:
3649
postgres_data:
3750
redis_data:
38-
qdrant_data:
51+
qdrant_data:
52+
n8n_data:

0 commit comments

Comments
 (0)