We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Some drives just doesn't appear, in my case are /dev/sda /dev/sdb and /dev/nvme0n1 This is my docker compose file:
version: '3.5'
services: scrutiny: container_name: scrutiny image: ghcr.io/analogj/scrutiny:master-omnibus cap_add: - SYS_RAWIO ports: - "18080:8080" # webapp - "8086:8086" # influxDB admin volumes: - /run/udev:/run/udev:ro - ./config:/opt/scrutiny/config - ./influxdb:/opt/scrutiny/influxdb devices: - "/dev/nvme0n1" - "/dev/sda" - "/dev/sdb" - "/dev/sdc" - "/dev/sdd" - "/dev/sde" - "/dev/sdf" - "/dev/sdg" - "/dev/sdh"
environment: - COLLECTOR_CRON_SCHEDULE=* 2 * * *
Expected behavior All the drives appearing in the web UI
Is this an error on my end?
Thanks a lot in advance!!
The text was updated successfully, but these errors were encountered:
to see nvme drives you need to add SYS_ADMIN to your cap_add, also you need to edit your nvme drive to just "nvme0"
Sorry, something went wrong.
That was the issue. Thx!!
No branches or pull requests
Describe the bug
Some drives just doesn't appear, in my case are /dev/sda /dev/sdb and /dev/nvme0n1
This is my docker compose file:
version: '3.5'
services:
scrutiny:
container_name: scrutiny
image: ghcr.io/analogj/scrutiny:master-omnibus
cap_add:
- SYS_RAWIO
ports:
- "18080:8080" # webapp
- "8086:8086" # influxDB admin
volumes:
- /run/udev:/run/udev:ro
- ./config:/opt/scrutiny/config
- ./influxdb:/opt/scrutiny/influxdb
devices:
- "/dev/nvme0n1"
- "/dev/sda"
- "/dev/sdb"
- "/dev/sdc"
- "/dev/sdd"
- "/dev/sde"
- "/dev/sdf"
- "/dev/sdg"
- "/dev/sdh"
Expected behavior
All the drives appearing in the web UI
Is this an error on my end?
Thanks a lot in advance!!
The text was updated successfully, but these errors were encountered: