Created
September 20, 2020 20:37
-
-
Save dnburgess/4173cfbaba62f1c31193136bced11422 to your computer and use it in GitHub Desktop.
DB Tech Scrutiny
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
version: "2.1" | |
services: | |
scrutiny: | |
image: linuxserver/scrutiny | |
container_name: scrutiny | |
privileged: true | |
environment: | |
- PUID=998 | |
- PGID=100 | |
- TZ=America/Denver | |
- SCRUTINY_API_ENDPOINT=http://localhost:8080 #DO NOT CHANGE THIS LINE | |
- SCRUTINY_WEB=true | |
- SCRUTINY_COLLECTOR=true | |
volumes: | |
- /srv/Scrutiny6/config:/config | |
- /dev/disk:/dev/disk | |
- /run/udev:/run/udev:ro | |
ports: | |
- 8181:8080 | |
restart: unless-stopped | |
#Run this command in Container Console to update data: | |
# scrutiny-collector-metrics run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment