25 lines
657 B
YAML
25 lines
657 B
YAML
# Scrutiny Collector — Calypso (Synology DS723+, 2-bay)
|
|
#
|
|
# Ships SMART data to the hub on homelab-vm.
|
|
# DS723+ has 2 bays (/dev/sda, /dev/sdb).
|
|
# Add /dev/sdc etc. if using a DX517 expansion unit.
|
|
#
|
|
# privileged: true required on DSM.
|
|
# 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
|
|
devices:
|
|
- /dev/sata1
|
|
- /dev/sata2
|
|
- /dev/nvme0n1
|
|
- /dev/nvme1n1
|
|
environment:
|
|
COLLECTOR_API_ENDPOINT: "http://100.67.40.126:8090"
|
|
restart: unless-stopped
|