-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
33 lines (32 loc) · 929 Bytes
/
docker-compose.yml
File metadata and controls
33 lines (32 loc) · 929 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:
# Development: run Claude CLI to work on this bot code
claude:
build:
context: .
dockerfile: Dockerfile.claude
image: claude-node-git
container_name: claude-cli
user: root
stdin_open: true
tty: true
working_dir: /workspace
volumes:
- .:/workspace:rw
- /workspace/node_modules/@biomejs
- /workspace/node_modules/.bin
- yarn_state:/workspace/.yarn
- ./.yarn/patches:/workspace/.yarn/patches:ro
- agent_home:/home/agent:rw
- ~/.gitconfig:/tmp/host-gitconfig:ro
- ~/.ssh:/tmp/host-ssh:ro
- ./.docker-entrypoint.sh:/docker-entrypoint.sh:ro
environment:
- HOME=/home/agent
- TERM=xterm-256color
- TARGET_UID=${UID:-501}
- TARGET_GID=${GID:-20}
entrypoint: ["/bin/bash", "/docker-entrypoint.sh"]
command: ["claude", "--dangerously-skip-permissions"]
volumes:
agent_home:
yarn_state: