-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
26 lines (24 loc) · 893 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
26 lines (24 loc) · 893 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
services:
codebuddy-gateway:
image: ghcr.io/windoc/codebuddy-gateway:latest
container_name: codebuddy-gateway
restart: unless-stopped
ports:
- "2222:22" # SSH
- "10532:10532" # OpenAI-compatible REST API
environment:
SSH_PASSWORD: "change-me"
# CODEBUDDY_API_KEY: "your-api-key"
# Gateway settings
CODEBUDDY_GATEWAY_ENABLED: "true"
# CODEBUDDY_GATEWAY_HOST: "0.0.0.0"
# CODEBUDDY_GATEWAY_PORT: "10532"
# CODEBUDDY_GATEWAY_TOOLS: "" # built-in tools disabled; API callers provide external OpenAI-style tools
# CODEBUDDY_GATEWAY_DISALLOWED_TOOLS: "Bash(git commit),Bash(git push),Bash(rm),Bash(sudo)"
# CODEBUDDY_GATEWAY_MODEL: ""
# CODEBUDDY_GATEWAY_MAX_TURNS: "30"
# CODEBUDDY_GATEWAY_TIMEOUT: "300000"
volumes:
- codebuddy-home:/home/codebuddy
volumes:
codebuddy-home: