-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
27 lines (26 loc) · 757 Bytes
/
docker-compose.yaml
File metadata and controls
27 lines (26 loc) · 757 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
# HolyCode - Quick Start
# Usage: docker compose up -d
# Web UI: http://localhost:4096
services:
holycode:
image: coderluii/holycode:latest
container_name: holycode
restart: unless-stopped
shm_size: 2g
ports:
- "4096:4096"
# - "3100:3100" # Paperclip dashboard
# - "8642:8642" # Hermes API server
volumes:
- ./data/opencode:/home/opencode
- ./local-cache/opencode:/home/opencode/.cache/opencode
- ./workspace:/workspace
environment:
- PUID=1000
- PGID=1000
- ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY:-}
# - ENABLE_PAPERCLIP=true
# - PAPERCLIP_PORT=3100
# - PAPERCLIP_DEPLOYMENT_MODE=authenticated
# - ENABLE_HERMES=true
# - HERMES_PORT=8642