-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
25 lines (24 loc) · 934 Bytes
/
docker-compose.yml
File metadata and controls
25 lines (24 loc) · 934 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
services:
garcon:
build: .
init: true
restart: unless-stopped
ports:
- "${GARCON_PORT:-8080}:${GARCON_PORT:-8080}"
volumes:
- garcon-data:/home/garcon/.garcon
- ${GARCON_PROJECT_DIR:-.}:/projects
- ${CLAUDE_CONFIG_DIR:-~/.claude}:/home/garcon/.claude
- ${CODEX_HOME:-~/.codex}:/home/garcon/.codex
- ${OPENCODE_CONFIG_DIR:-~/.opencode}:/home/garcon/.opencode
- ${OPENCODE_CONFIG_DIR:-~/.opencode}/opencode-data:/home/garcon/.local/share/opencode
- ${OPENCODE_CONFIG_DIR:-~/.opencode}/opencode-state:/home/garcon/.local/state/opencode
- ${OPENCODE_CONFIG_DIR:-~/.opencode}/opencode-cache:/home/garcon/.local/cache/opencode
- ~/.amp:/home/garcon/.amp
environment:
- GARCON_PORT=${GARCON_PORT:-8080}
- GARCON_BIND_ADDRESS=0.0.0.0
- GARCON_PROJECT_BASE_DIR=/projects
- OPENAI_API_KEY=${OPENAI_API_KEY:-}
volumes:
garcon-data: