daily-briefing/docker-compose.yml

24 lines
692 B
YAML
Raw Normal View History

2026-02-13 00:24:31 +01:00
services:
daily-briefing:
build: .
container_name: daily-briefing
ports:
- "9080:8080"
2026-02-13 00:24:31 +01:00
environment:
# ── Required: Database (external PostgreSQL) ──
- DB_HOST=10.10.10.10
- DB_PORT=5433
- DB_NAME=openclaw
- DB_USER=sam
- DB_PASSWORD=sam
# ── Optional: skip setup wizard by providing ADMIN_PASSWORD ──
# - ADMIN_PASSWORD=your-password
# - JWT_SECRET=optional-fixed-secret
# ── All integrations are configured via the web setup wizard ──
# Visit http://host:9080 on first start to complete setup.
2026-02-13 00:24:31 +01:00
extra_hosts:
- "host.docker.internal:host-gateway"
restart: always