-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.server.yml
More file actions
35 lines (33 loc) · 912 Bytes
/
docker-compose.server.yml
File metadata and controls
35 lines (33 loc) · 912 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
version: '3.8'
services:
jada-code:
build: .
container_name: jada-code
command: serve --host 0.0.0.0 --port 3000 --with-builtin developer,computercontroller,memory
restart: unless-stopped
ports:
- "3000:3000"
environment:
- GOOSE_HOST=0.0.0.0
- GOOSE_PORT=3000
- GOOSE_PROVIDER=${GOOSE_PROVIDER:-openrouter}
- GOOSE_MODEL=${GOOSE_MODEL:-moonshotai/kimi-k2}
- OPENROUTER_API_KEY=${OPENROUTER_API_KEY}
- GOOSE_DISABLE_TELEMETRY=1
volumes:
- jada-code-data:/home/goose/.local/share/goose
- jada-code-config:/home/goose/.config/goose
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000/status"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s
deploy:
resources:
limits:
memory: 2G
cpus: "2"
volumes:
jada-code-data:
jada-code-config: