-
Notifications
You must be signed in to change notification settings - Fork 398
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
95 lines (88 loc) · 2.05 KB
/
Copy pathdocker-compose.yml
File metadata and controls
95 lines (88 loc) · 2.05 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
services:
frontend:
image: ${IMAGE_REGISTRY:-simpleyyt}/manus-frontend:${IMAGE_TAG:-latest}
build:
context: ./frontend
dockerfile: Dockerfile
x-bake:
platforms:
- linux/amd64
- linux/arm64
ports:
- "5173:80"
depends_on:
- backend
restart: unless-stopped
networks:
- manus-network
environment:
- BACKEND_URL=http://backend:8000
backend:
image: ${IMAGE_REGISTRY:-simpleyyt}/manus-backend:${IMAGE_TAG:-latest}
build:
context: ./backend
dockerfile: Dockerfile
x-bake:
platforms:
- linux/amd64
- linux/arm64
depends_on:
- sandbox
- claw
- mongodb
- redis
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
#- ./mcp.json:/etc/mcp.json # Mount MCP servers directory
networks:
- manus-network
env_file:
- .env
sandbox:
image: ${IMAGE_REGISTRY:-simpleyyt}/manus-sandbox:${IMAGE_TAG:-latest}
build:
context: ./sandbox
dockerfile: Dockerfile
x-bake:
platforms:
- linux/amd64
- linux/arm64
command: /bin/sh -c "exit 0" # prevent sandbox from starting, ensure image is pulled
restart: "no"
networks:
- manus-network
claw:
image: ${IMAGE_REGISTRY:-simpleyyt}/manus-claw:${IMAGE_TAG:-latest}
build:
context: ./claw
dockerfile: Dockerfile
x-bake:
platforms:
- linux/amd64
- linux/arm64
entrypoint: /bin/sh -c "exit 0" # prevent claw from starting, ensure image is pulled
restart: "no"
networks:
- manus-network
mongodb:
image: mongo:7.0
volumes:
- mongodb_data:/data/db
restart: unless-stopped
#ports:
# - "27017:27017"
networks:
- manus-network
redis:
image: redis:7.0
restart: unless-stopped
networks:
- manus-network
volumes:
mongodb_data:
name: manus-mongodb-data
networks:
manus-network:
name: manus-network
driver: bridge