services: daily-briefing: build: . container_name: daily-briefing ports: - "9080:8080" 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. extra_hosts: - "host.docker.internal:host-gateway" restart: always