scrutiny docker container - /dev/sd* #62
Replies: 3 comments 16 replies
-
I don't know the answer to this unfortunately. If you're worried then I recommend to experiment on a non-production system first to see if it works. |
Beta Was this translation helpful? Give feedback.
-
Alright, I added this to systemd_nspawn_user_args= and re-started the jail. It works with the scrutiny docker container running within the jail, and I don't see any errors yet on truenas (dmesg). Seems to be working fine, thanks. |
Beta Was this translation helpful? Give feedback.
-
for scrutiny in regards to jailmaker the only issue i encountered was it was missing the capability required in order to deploy it. there has been discussion about how to add the missing capability when i tried it myself i couldn't start up docker so i rolled back without issue. but other users had done it and managed to have some success. i posted my scrutiny docker compose. it was what worked on qnap qts. that was the setting i used. |
Beta Was this translation helpful? Give feedback.
-
Hi,
I'd like to use the scrutiny docker container (https://github.com/AnalogJ/scrutiny) which is an app that has a nice GUI for HDD smart tests. It requires access to /dev/sd*.
As per the jlmkr documentations, /dev binds are not recommended. How would one approach this? Can we bind mount /dev/sd* devices as read-only, and would that cause any issues with the TrueNAS system?
Here is the docker configuration for scrutiny:
docker run -it --rm -p 8080:8080 -p 8086:8086 \ -v
pwd/scrutiny:/opt/scrutiny/config \ -v
pwd/influxdb2:/opt/scrutiny/influxdb \ -v /run/udev:/run/udev:ro \ --cap-add SYS_RAWIO \ --device=/dev/sda \ --device=/dev/sdb \ --name scrutiny \ ghcr.io/analogj/scrutiny:master-omnibus
Beta Was this translation helpful? Give feedback.
All reactions