-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-skill.yml
More file actions
48 lines (45 loc) · 881 Bytes
/
docker-compose-skill.yml
File metadata and controls
48 lines (45 loc) · 881 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
# docker-compose.yml
version: '3.4'
services:
mcp-skill:
restart: unless-stopped
build:
context: .
dockerfile: docker/Dockerfile-mcp-skill
target: production
environment:
PORT: 8090
ports:
- "8090:8090"
bot:
restart: unless-stopped
build:
context: .
dockerfile: docker/Dockerfile-bot
target: production
environment:
MCP_SERVERS: http://mcp-skill:8090/mcp
env_file:
- .env
ports:
- "8080:8080"
volumes:
- bot-data:/app
depends_on:
- mcp-skill
client-telegram:
restart: unless-stopped
build:
context: .
dockerfile: docker/Dockerfile-client-telegram
target: production
environment:
AI_SERVICE: http://bot:8080
env_file:
- .env
ports:
- "8085:8085"
depends_on:
- bot
volumes:
bot-data: