Skip to main content

Docker-Compose.yml

---
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