Skip to content

Instantly share code, notes, and snippets.

@OSCUK
Last active February 15, 2022 15:56
Show Gist options
  • Save OSCUK/121d3d40da083f1bf8b079b1de93d76a to your computer and use it in GitHub Desktop.
Save OSCUK/121d3d40da083f1bf8b079b1de93d76a to your computer and use it in GitHub Desktop.
Scrutiny for Docker
---
version: "2.1"
services:
scrutiny:
image: linuxserver/scrutiny
container_name: scrutiny
privileged: true
environment:
- PUID=100
- PGID=100
- TZ=America/Denver
- SCRUTINY_API_ENDPOINT=http://localhost:8080
- SCRUTINY_WEB=true
- SCRUTINY_COLLECTOR=true
volumes:
- /srv/Scrutiny/config:/config
- /dev/disk:/dev/disk
- /run/udev:/run/udev:ro
ports:
- 8585: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