# Scrutiny Collector — Atlantis (Synology 1823xs+) # # Ships SMART data to the hub on homelab-vm. # All 8 SATA bays populated + 4 NVMe slots. # Synology uses /dev/sata* — requires explicit device list in collector.yaml. # collector.yaml lives at: /volume1/docker/scrutiny-collector/collector.yaml # # privileged: true required on DSM (same as gluetun — kernel lacks nf_conntrack_netlink) # # Hub: http://100.67.40.126:8090 services: scrutiny-collector: image: ghcr.io/analogj/scrutiny:master-collector container_name: scrutiny-collector privileged: true volumes: - /run/udev:/run/udev:ro - /volume1/docker/scrutiny-collector/collector.yaml:/opt/scrutiny/config/collector.yaml:ro devices: - /dev/sata1 - /dev/sata2 - /dev/sata3 - /dev/sata4 - /dev/sata5 - /dev/sata6 - /dev/sata7 - /dev/sata8 - /dev/nvme0n1 - /dev/nvme1n1 - /dev/nvme2n1 - /dev/nvme3n1 environment: COLLECTOR_API_ENDPOINT: "http://100.67.40.126:8090" restart: unless-stopped