-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
29 lines (28 loc) · 859 Bytes
/
docker-compose.yml
File metadata and controls
29 lines (28 loc) · 859 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
# =============================================================================
# claude-devtools — Docker Compose
#
# Quick start:
# docker compose up
#
# Then open http://localhost:3456 in your browser.
#
# Security note:
# The standalone server has zero outbound network calls — no telemetry,
# no analytics, no auto-updater. For maximum isolation, uncomment
# network_mode below.
# =============================================================================
services:
claude-devtools:
build: .
ports:
- "3456:3456"
volumes:
- ${CLAUDE_DIR:-~/.claude}:/data/.claude:ro
environment:
- NODE_ENV=production
- CLAUDE_ROOT=/data/.claude
- HOST=0.0.0.0
- PORT=3456
restart: unless-stopped
# Uncomment for maximum network isolation (no outbound connections):
# network_mode: "none"