-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
33 lines (32 loc) · 990 Bytes
/
docker-compose.yml
File metadata and controls
33 lines (32 loc) · 990 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
services:
# Lightweight MCP server (requires Aseprite volume mount)
pixel-mcp:
build:
context: .
dockerfile: Dockerfile
image: pixel-mcp:latest
volumes:
# Mount your local Aseprite binary
- /Applications/Aseprite.app/Contents/MacOS/aseprite:/usr/local/bin/aseprite:ro
# Optional: mount custom config
# - ./config.json:/root/.config/pixel-mcp/config.json:ro
# Optional: mount temp directory for persistence
# - ./tmp:/tmp/pixel-mcp
stdin_open: true
tty: true
environment:
- ASEPRITE_PATH=/usr/local/bin/aseprite
- TEMP_DIR=/tmp/pixel-mcp
- LOG_LEVEL=info
# Complete MCP server with Aseprite included (larger image)
pixel-mcp-full:
build:
context: .
dockerfile: Dockerfile.with-aseprite
image: pixel-mcp:full
stdin_open: true
tty: true
environment:
- ASEPRITE_PATH=/build/aseprite/build/bin/aseprite
- TEMP_DIR=/tmp/pixel-mcp
- LOG_LEVEL=info