dc624bb7e5
Drop the grafana service and the homeautomation_grafana_storage volume declaration from docker-compose.yml (migration and app services unchanged), and delete the grafana/ provisioning + dashboards directory. Visualization moves to the M2 React frontend; the named volume's actual data is retired manually as an ops step, never by automation. docker compose config -q passes; pytest 95 passed; ruff clean.
28 lines
682 B
YAML
28 lines
682 B
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"]
|
|
volumes:
|
|
- ./data:/app/data
|
|
- ./.env:/app/.env:ro
|
|
|
|
app:
|
|
container_name: home-automation-app
|
|
image: code.wanderingbadger.dev/tliu93/home-automation:latest
|
|
user: "1000:1000"
|
|
restart: unless-stopped
|
|
init: true
|
|
depends_on:
|
|
migration:
|
|
condition: service_completed_successfully
|
|
ports:
|
|
- "127.0.0.1:8881:8000"
|
|
volumes:
|
|
- ./data:/app/data
|
|
- ./.env:/app/.env:ro
|
|
|