Bot Updating Documentation

pull/19/head
LinuxServer-CI 2020-09-29 03:57:26 +00:00
rodzic c3f15e56e0
commit 1c8005e400
1 zmienionych plików z 6 dodań i 6 usunięć

Wyświetl plik

@ -45,8 +45,8 @@ docker create \
-e SCRUTINY_COLLECTOR=true \ -e SCRUTINY_COLLECTOR=true \
-p 8080:8080 \ -p 8080:8080 \
-v <path to config>:/config \ -v <path to config>:/config \
-v /dev/disk:/dev/disk \ -v /dev/disk:/dev/disk:ro \
-v /run/udev:ro:/run/udev \ -v /run/udev:/run/udev:ro \
--restart unless-stopped \ --restart unless-stopped \
linuxserver/scrutiny linuxserver/scrutiny
``` ```
@ -73,8 +73,8 @@ services:
- SCRUTINY_COLLECTOR=true - SCRUTINY_COLLECTOR=true
volumes: volumes:
- <path to config>:/config - <path to config>:/config
- /dev/disk:/dev/disk - /dev/disk:/dev/disk:ro
- /run/udev:ro:/run/udev - /run/udev:/run/udev:ro
ports: ports:
- 8080:8080 - 8080:8080
restart: unless-stopped restart: unless-stopped
@ -107,8 +107,8 @@ Docker images are configured using parameters passed at runtime (such as those a
| Volume | Function | | Volume | Function |
| :----: | --- | | :----: | --- |
| `/config` | Where config is stored. | | `/config` | Where config is stored. |
| `/dev/disk` | This is how Scrutiny accesses drives. | | `/dev/disk:ro` | This is how Scrutiny accesses drives. |
| `/run/udev` | Provides necessary metadata to Scrutiny. | | `/run/udev:ro` | Provides necessary metadata to Scrutiny. |