-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
43 lines (37 loc) · 963 Bytes
/
docker-compose.yml
File metadata and controls
43 lines (37 loc) · 963 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
39
40
41
42
43
version: '3.8'
services:
aseprite-mcp:
build:
context: .
dockerfile: Dockerfile
image: aseprite-mcp:latest
container_name: aseprite-mcp-server
restart: unless-stopped
# Uncomment the following line if you need to expose ports
# ports:
# - "8080:8080"
# Mount volumes for development
volumes:
- .:/app
# Environment variables (copy from sample.env if needed)
# env_file:
# - .env
# Override entrypoint for development
# entrypoint: ["tail", "-f", "/dev/null"]
# For production, use the default entrypoint
stdin_open: true
tty: true
# Optional: Add a development service
aseprite-mcp-dev:
build:
context: .
dockerfile: Dockerfile
image: aseprite-mcp:latest
container_name: aseprite-mcp-dev
volumes:
- .:/app
entrypoint: ["tail", "-f", "/dev/null"]
stdin_open: true
tty: true
profiles:
- dev