Files
homelab-infra/ops/scrutiny/docker-compose.yml
T
2026-06-01 16:42:31 +02:00

38 lines
1.3 KiB
YAML

services:
scrutiny:
image: ghcr.io/starosdev/scrutiny:latest-omnibus@sha256:41c5faefb96766d27d58a829fa19b3f4f27da4160926de3255cf142a85a90c12
container_name: scrutiny
restart: unless-stopped
privileged: true
environment:
- TZ=Europe/Berlin
- HOST_OS=Unraid
- HOST_HOSTNAME=Kallilabcore
- COLLECTOR_CRON_SCHEDULE=0 0 * * *
- COLLECTOR_RUN_STARTUP=false
- SCRUTINY_WEB_MQTT_ENABLED=false
volumes:
- /mnt/user/appdata/scrutiny/config:/opt/scrutiny/config
- /mnt/user/appdata/scrutiny/influxdb:/opt/scrutiny/influxdb
- /run/udev:/run/udev:ro
- /dev/sdb:/dev/sdb
- /dev/sdc:/dev/sdc
- /dev/nvme0n1:/dev/nvme0n1
security_opt:
- no-new-privileges:true
networks:
- frontend_net
labels:
- "traefik.enable=true"
- "traefik.docker.network=frontend_net"
- "traefik.http.routers.scrutiny.rule=Host(`scrutiny.kaleschke.info`)"
- "traefik.http.routers.scrutiny.entrypoints=websecure"
- "traefik.http.routers.scrutiny.tls=true"
- "traefik.http.routers.scrutiny.tls.certresolver=le"
- "traefik.http.routers.scrutiny.middlewares=authelia@file,secure-headers@file"
- "traefik.http.services.scrutiny.loadbalancer.server.port=8080"
networks:
frontend_net:
external: true