-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathcompose-dev.yaml
59 lines (54 loc) · 1.28 KB
/
compose-dev.yaml
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
services:
api:
image: api:prod
build:
dockerfile: ./backend/api/Dockerfile
entrypoint: uv run fastapi run api/main.py --root-path=/api --reload
env_file:
- ./envs/backend.env
ports:
- 8000:8000
volumes:
- ./backend/api:/app/api
- ./backend/api/.vscode/:/app/.vscode
- ./backend/shared_mcp:/app/shared_mcp
mcp:
image: mcp:prod
build:
dockerfile: ./backend/mcp/Dockerfile
environment:
- MCP_SERVER_PORT=${MCP_SERVER_PORT}
ports:
- ${MCP_SERVER_PORT}:${MCP_SERVER_PORT}
volumes:
- ./backend/mcp:/app/mcp
- ./backend/shared_mcp:/app/shared_mcp
youtube:
image: youtube-mcp-server
env_file:
- ./envs/youtube.env
environment:
- YOUTUBE_MCP_SERVER_PORT=${MCP_SERVER_PORT}
ports:
- 5000:${MCP_SERVER_PORT}
dbhub:
image: bytebase/dbhub:0.3.3
ports:
- 8080:${MCP_SERVER_PORT}
command: >
--transport sse
--port ${MCP_SERVER_PORT}
--dsn ${POSTGRES_DSN}
inspector:
image: inspector:prod
build:
dockerfile: ./inspector/Dockerfile
ports:
- 6274:6274
- 6277:6277
nginx:
image: nginx:1.26.3-alpine
ports:
- 80:80
volumes:
- ./nginx/nginx.conf:/etc/nginx/conf.d/default.conf