22 lines
556 B
YAML
22 lines
556 B
YAML
services:
|
|
web:
|
|
build: .
|
|
ports:
|
|
- "8000:8000"
|
|
volumes:
|
|
- ./data:/app/data
|
|
environment:
|
|
- DATABASE_PATH=/app/data/fitness.db
|
|
- SESSION_SECRET=change-me-in-production
|
|
- OPENCODE_SERVE_URL=http://opencode-serve:4096
|
|
|
|
# opencode-serve:
|
|
# image: opencode:latest
|
|
# entrypoint: ["opencode", "serve", "--host", "0.0.0.0", "--port", "4096"]
|
|
# ports:
|
|
# - "4096:4096"
|
|
# volumes:
|
|
# - ./opencode:/root/.config/opencode
|
|
# environment:
|
|
# - OPENCODE_SERVER_PASSWORD=your-password-here
|