forked from arabold/docs-mcp-server
-
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) · 805 Bytes
/
docker-compose.yml
File metadata and controls
38 lines (36 loc) · 805 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:
docs-mcp-server:
image: ghcr.io/arabold/docs-mcp-server:latest
build:
context: .
dockerfile: Dockerfile
command: ["--protocol", "http", "--port", "6280"]
# platform: linux/amd64
container_name: docs-mcp-server
ports:
- "6280:6280"
env_file:
- .env
environment:
- MCP_PORT=6280
volumes:
- docs-mcp-data:/data
docs-mcp-web:
image: ghcr.io/arabold/docs-mcp-server:latest
build:
context: .
dockerfile: Dockerfile
command: ["web", "--port", "6281"]
# platform: linux/amd64
container_name: docs-mcp-web
ports:
- "6281:6281"
env_file:
- .env
environment:
- WEB_PORT=6281
volumes:
- docs-mcp-data:/data
volumes:
docs-mcp-data:
name: docs-mcp-data