Files
home-automation/docker-compose.yml
T
tliu93 33ca3da593
frontend / frontend (push) Successful in 46s
pytest / test (push) Successful in 3m56s
M8-R11: make business timezone deterministic
2026-08-27 12:16:52 +02:00

37 lines
1.0 KiB
YAML

services:
migration:
container_name: home-automation-migration
image: code.wanderingbadger.dev/tliu93/home-automation:latest
user: "1000:1000"
restart: "no"
init: true
command: ["python", "-m", "scripts.run_migrations"]
environment:
TZ: "${TZ:-Europe/Amsterdam}"
volumes:
- ./data:/app/data
- ./.env:/app/.env:ro
- /etc/localtime:/etc/localtime:ro
app:
container_name: home-automation-app
image: code.wanderingbadger.dev/tliu93/home-automation:latest
user: "1000:1000"
restart: unless-stopped
init: true
environment:
TZ: "${TZ:-Europe/Amsterdam}"
depends_on:
migration:
condition: service_completed_successfully
ports:
- "127.0.0.1:8881:8000"
devices:
- "${WARMTELINK_DEVICE_PATH:?Set a stable /dev/serial/by-id path}:/dev/warmtelink:rw"
group_add:
- "${WARMTELINK_SERIAL_GID:?Set the host serial device GID}"
volumes:
- ./data:/app/data
- ./.env:/app/.env:ro
- /etc/localtime:/etc/localtime:ro