-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
115 lines (104 loc) · 2.42 KB
/
docker-compose.yml
File metadata and controls
115 lines (104 loc) · 2.42 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
version: '3.8'
volumes:
n8n_storage:
postgres_storage:
ollama_storage:
qdrant_storage:
open-webui:
flowise:
networks:
demo:
driver: bridge
services:
n8n:
image: n8nio/n8n
environment:
- DB_TYPE=postgresdb
- DB_POSTGRESDB_DATABASE=${POSTGRES_DB}
- DB_POSTGRESDB_PORT=5432
- DB_POSTGRESDB_HOST=postgres
- DB_POSTGRESDB_USER=${POSTGRES_USER}
- DB_POSTGRESDB_PASSWORD=${POSTGRES_PASSWORD}
- N8N_DIAGNOSTICS_ENABLED=false
- N8N_PERSONALIZATION_ENABLED=false
- N8N_ENCRYPTION_KEY=${N8N_ENCRYPTION_KEY}
- N8N_USER_MANAGEMENT_JWT_SECRET=${N8N_USER_MANAGEMENT_JWT_SECRET}
volumes:
- n8n_storage:/root/.n8n
networks:
- demo
postgres:
image: postgres:latest
ports: ["5432:5432"]
environment:
- POSTGRES_DB=${POSTGRES_DB}
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
volumes:
- postgres_storage:/var/lib/postgresql/data
networks:
- demo
ollama:
image: ollama/ollama:latest
ports: ["11434:11434"]
volumes:
- ollama_storage:/root/.ollama
networks:
- demo
qdrant:
image: qdrant/qdrant:latest
ports: ["6333:6333"]
volumes:
- qdrant_storage:/qdrant/storage
networks:
- demo
open-webui:
image: open-webui:latest
ports: ["8080:8080"]
networks:
- demo
volumes:
- open-webui:/root/.open-webui
flowise:
image: flowise/flowise:latest
ports: ["3000:3000"]
networks:
- demo
volumes:
- flowise:/root/.flowise
gsam_ottomator_agent_app:
build:
context: .
environment:
- PORT=8001
- CMD_TO_RUN="uvicorn gsam_ottomator_agent_app:app --host 0.0.0.0 --port ${PORT}"
ports:
- "8001:8001"
networks:
- demo
thirdbrain_mcp_openai_agent:
build:
context: .
environment:
- PORT=8002
- CMD_TO_RUN="uvicorn thirdbrain_mcp_openai_agent:app --host 0.0.0.0 --port ${PORT}"
ports:
- "8002:8002"
networks:
- demo
combined_agent:
build:
context: .
environment:
- PORT=8003
- CMD_TO_RUN="python combined_agent.py"
ports:
- "8003:8003"
networks:
- demo
depends_on:
- postgres
- n8n
- ollama
volumes:
- ./data:/app/data