From 7b885db8689ac9f3fd7b5059e83e67878c887a3d Mon Sep 17 00:00:00 2001 From: NightPumpkin Date: Tue, 20 Apr 2021 21:22:18 +0200 Subject: [PATCH] compose scrutiny compose scrutiny --- docker-compose/scrutiny/docker-compose.yml | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 docker-compose/scrutiny/docker-compose.yml diff --git a/docker-compose/scrutiny/docker-compose.yml b/docker-compose/scrutiny/docker-compose.yml new file mode 100644 index 0000000..2141e5b --- /dev/null +++ b/docker-compose/scrutiny/docker-compose.yml @@ -0,0 +1,37 @@ +## Discord Plex FR : https://discord.gg/ERpYMqS +## Version 2021-04-20 + +version: "2.1" +services: + scrutiny: + image: ghcr.io/linuxserver/scrutiny + container_name: scrutiny +# Decommenter les 2 lignes suivantes pour que watchtower surveille ce conteneur +# labels: +# - com.centurylinklabs.watchtower.enable=true + networks: + - scrutiny-network + cap_add: + - SYS_RAWIO + - SYS_ADMIN + environment: + - PUID=1000 + - PGID=100 + - TZ=Europe/Paris + - SCRUTINY_API_ENDPOINT=http://localhost:8080 + - SCRUTINY_WEB=true + - SCRUTINY_COLLECTOR=true + volumes: + - /srv/disk1/docker/scrutiny/config:/config + - /run/udev:/run/udev:ro + ports: + - 8080:8080 + devices: + - /dev/sda:/dev/sda + - /dev/sdb:/dev/sdb + restart: unless-stopped + +networks: + scrutiny-network: + external: + name: scrutiny-network \ No newline at end of file -- 2.45.2