-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
49 lines (47 loc) · 1.03 KB
/
Copy pathdocker-compose.yml
File metadata and controls
49 lines (47 loc) · 1.03 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
services:
steam-mcp:
image: ghcr.io/codekeanu/steam-mcp:latest
container_name: steam-mcp-server
restart: unless-stopped
env_file:
- .env
# MCP servers communicate via stdio, so we need stdin open
stdin_open: true
tty: true
# Resource limits
deploy:
resources:
limits:
cpus: '1'
memory: 512M
reservations:
cpus: '0.25'
memory: 128M
# Local build (use: docker compose --profile local up steam-mcp-local)
steam-mcp-local:
build:
context: .
dockerfile: Dockerfile
target: production
container_name: steam-mcp-local
profiles:
- local
env_file:
- .env
stdin_open: true
tty: true
# Development service with volume mount for hot reload
steam-mcp-dev:
build:
context: .
dockerfile: Dockerfile
target: production
container_name: steam-mcp-dev
profiles:
- dev
env_file:
- .env
volumes:
- ./src:/app/src:ro
stdin_open: true
tty: true