-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
51 lines (46 loc) · 963 Bytes
/
docker-compose.yml
File metadata and controls
51 lines (46 loc) · 963 Bytes
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
version: '3.8'
services:
# 1. Mission Control (Dashboard)
dashboard:
build:
context: .
dockerfile: dashboard/Dockerfile
ports:
- "3000:3000"
environment:
- MONGODB_URI=mongodb://mongo:27017/agent-zero
- NEXTAUTH_URL=http://localhost:3000
- NEXTAUTH_SECRET=hackathon-secret-key
depends_on:
- mongo
networks:
- agent-network
# 2. Memory Bank (Database)
mongo:
image: mongo:latest
ports:
- "27017:27017"
volumes:
- mongo-data:/data/db
networks:
- agent-network
# 3. Nervous System (Kestra)
kestra:
image: kestra/kestra:latest
ports:
- "8080:8080"
environment:
KESTRA_CONFIGURATION: |
kestra:
server:
basic-auth:
enabled: false
volumes:
- ./flows:/opt/kestra/flows
networks:
- agent-network
networks:
agent-network:
driver: bridge
volumes:
mongo-data: