forked from melgarafael/growthOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
63 lines (59 loc) · 1.33 KB
/
Copy pathdocker-compose.yml
File metadata and controls
63 lines (59 loc) · 1.33 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
version: "3.9"
services:
mcp-social-publish:
build:
context: .
target: mcp-social-publish
container_name: growthos-social-publish
env_file: .env
ports:
- "8001:8001"
networks:
- growthos
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8001/health"]
interval: 30s
timeout: 5s
retries: 3
start_period: 10s
mcp-social-discover:
build:
context: .
target: mcp-social-discover
container_name: growthos-social-discover
env_file: .env
ports:
- "8002:8002"
networks:
- growthos
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8002/health"]
interval: 30s
timeout: 5s
retries: 3
start_period: 10s
mcp-obsidian-vault:
build:
context: .
target: mcp-obsidian-vault
container_name: growthos-obsidian-vault
env_file: .env
ports:
- "8003:8003"
volumes:
- ${GROWTHOS_VAULT_PATH:-./vault}:/vault:rw
networks:
- growthos
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8003/health"]
interval: 30s
timeout: 5s
retries: 3
start_period: 10s
networks:
growthos:
driver: bridge
name: growthos-network