daily-briefing/docker-compose.yml

28 lines
749 B
YAML
Raw Normal View History

2026-02-13 00:24:31 +01:00
services:
daily-briefing:
build: .
container_name: daily-briefing
ports:
- "8080:8080"
environment:
# Database (PostgreSQL)
- DB_HOST=10.10.10.10
- DB_PORT=5433
- DB_NAME=openclaw
- DB_USER=sam
- DB_PASSWORD=sam
# Weather
2026-02-13 00:24:31 +01:00
- WEATHER_LOCATION=Leverkusen
- WEATHER_LOCATION_SECONDARY=Rab,Croatia
# Home Assistant
- HA_URL=https://homeassistant.daddelolymp.de
- HA_TOKEN=${HA_TOKEN}
# Vikunja Tasks
- VIKUNJA_URL=http://10.10.10.10:3456/api/v1
- VIKUNJA_TOKEN=${VIKUNJA_TOKEN}
# Unraid Servers (JSON array)
- UNRAID_SERVERS=${UNRAID_SERVERS:-[]}
2026-02-13 00:24:31 +01:00
extra_hosts:
- "host.docker.internal:host-gateway"
restart: always