blob: 2809e014176d31ab23e7792797e9714f7acbd0d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
services:
api:
build:
context: .
dockerfile: Dockerfile
ports:
- "3000:3000"
environment:
OPENCODE_API_KEY: ${OPENCODE_API_KEY}
DISPATCH_MODEL: ${DISPATCH_MODEL:-deepseek-v4-flash-free}
DISPATCH_WORKING_DIR: /app/workspace
volumes:
- workspace:/app/workspace
restart: unless-stopped
volumes:
workspace:
|