-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
48 lines (41 loc) · 990 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
services:
n8n:
image: docker.n8n.io/n8nio/n8n
restart: unless-stopped
ports:
- "13008:5678"
environment:
# - N8N_HOST=${SUBDOMAIN}.${DOMAIN_NAME}
- N8N_PORT=5678
- N8N_PROTOCOL=http
- NODE_ENV=production
# - WEBHOOK_URL=https://${SUBDOMAIN}.${DOMAIN_NAME}/
# - GENERIC_TIMEZONE=${GENERIC_TIMEZONE}
- OLLAMA_URL=http://ollama:8000
volumes:
- ./n8n_data:/home/node/.n8n
ollama:
image: ollama/ollama
restart: unless-stopped
environment:
- NODE_ENV=production
- WEBHOOK_URL=https://${SUBDOMAIN}.${DOMAIN_NAME}/
- GENERIC_TIMEZONE=${GENERIC_TIMEZONE}
volumes:
- ./.ollama:/home/node/.ollama
ports :
- :8000
qdrant:
image: qdrant/qdrant
restart: unless-stopped
ports:
- "6333:6333"
volumes:
- ./qdrant_data:/qdrant/storage
volumes:
n8n_data:
external: true
ollama_data:
external: true
qdrant_data:
external: true