-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
43 lines (40 loc) · 851 Bytes
/
docker-compose.yml
File metadata and controls
43 lines (40 loc) · 851 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
services:
backend:
build:
context: ./backend
dockerfile: Dockerfile
container_name: ccdash-backend
ports:
- "6060:6060"
volumes:
# Claude Code logs directory
- ~/.claude:/root/.claude:ro
# Database persistence
- ccdash-db:/root/.ccdash
environment:
- GIN_MODE=release
- PORT=6060
networks:
- ccdash-network
restart: unless-stopped
frontend:
build:
context: ./frontend
dockerfile: Dockerfile
container_name: ccdash-frontend
ports:
- "3000:3000"
environment:
- NODE_ENV=production
- NEXT_PUBLIC_API_URL=http://localhost:6060/api
networks:
- ccdash-network
depends_on:
- backend
restart: unless-stopped
networks:
ccdash-network:
driver: bridge
volumes:
ccdash-db:
driver: local