joshuakohut77

Untitled

Apr 19th, 2022 (edited)
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. version: '3.7'
  2.  
  3. services:
  4. scrutiny:
  5. image: lscr.io/linuxserver/scrutiny
  6. container_name: scrutiny
  7. cap_add:
  8. - SYS_RAWIO
  9. - SYS_ADMIN
  10. environment:
  11. - PUID=1000
  12. - PGID=1000
  13. - TZ=America/New_York
  14. - SCRUTINY_API_ENDPOINT=https://scrutiny.<redacted>.com
  15. - SCRUTINY_WEB=true
  16. - SCRUTINY_COLLECTOR=true
  17. volumes:
  18. - /srv/scrutiny/config:/config
  19. - "/ect/localtime:/etc/localtime:ro"
  20. devices:
  21. # - /dev/nvme0n1:/dev/nvme0n1
  22. - /dev/sda:/dev/sda
  23. - /dev/sdb:/dev/sdb
  24. - /dev/sdc:/dev/sdc
  25. - /dev/sdd:/dev/sdd
  26. - /dev/sde:/dev/sde
  27. networks:
  28. - scrutiny
  29.  
  30. networks:
  31. scrutiny:
  32. external: true
Add Comment
Please, Sign In to add comment