forked from mcp-agents-ai/mcp-agents-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
38 lines (36 loc) · 866 Bytes
/
docker-compose.yml
File metadata and controls
38 lines (36 loc) · 866 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
services:
server:
image: ghcr.io/mcp-agents-ai/mcp-agents-hub-server:latest
restart: always
container_name: mcp-agents-hub-server
networks:
- mcp-agents-hub
build:
context: ./server
dockerfile: Dockerfile
ports:
- "3001:3001"
env_file:
- ../.github-private/env_files/.env
volumes:
- ./server/src/data/split:/app/dist/data/split/
- ../data/cached:/app/dist/data/cached/
client:
image: ghcr.io/mcp-agents-ai/mcp-agents-hub-client:latest
restart: always
container_name: mcp-agents-hub-client
networks:
- mcp-agents-hub
build:
context: ./client
dockerfile: Dockerfile
ports:
- "80:80"
- "443:443"
volumes:
- ../.github-private/ssl:/etc/nginx/ssl:ro
depends_on:
- server
networks:
mcp-agents-hub:
driver: bridge