Fix scrutiny so it picks up which task to run correctly
This commit is contained in:
parent
3c21c5670c
commit
cc43910be6
1 changed files with 1 additions and 5 deletions
|
@ -6,11 +6,8 @@ services:
|
||||||
ports:
|
ports:
|
||||||
- "{{ wireguard.clients[ansible_fqdn].ip }}:7278:8080"
|
- "{{ wireguard.clients[ansible_fqdn].ip }}:7278:8080"
|
||||||
volumes:
|
volumes:
|
||||||
- /dev/disk:/dev/disk
|
|
||||||
- /run/udev:/run/udev:ro
|
|
||||||
- /mnt/tank/app-data/scrutiny/:/config
|
- /mnt/tank/app-data/scrutiny/:/config
|
||||||
environment:
|
environment:
|
||||||
- SCRUTINY_COLLECTOR=false
|
|
||||||
- SCRUTINY_WEB=true
|
- SCRUTINY_WEB=true
|
||||||
- PUID={{ docker_user.id }}
|
- PUID={{ docker_user.id }}
|
||||||
- PGID={{ docker_user.id }}
|
- PGID={{ docker_user.id }}
|
||||||
|
@ -18,14 +15,13 @@ services:
|
||||||
|
|
||||||
collector:
|
collector:
|
||||||
image: linuxserver/scrutiny:latest
|
image: linuxserver/scrutiny:latest
|
||||||
privileged: True
|
privileged: true
|
||||||
volumes:
|
volumes:
|
||||||
- /dev/disk:/dev/disk
|
- /dev/disk:/dev/disk
|
||||||
- /run/udev:/run/udev:ro
|
- /run/udev:/run/udev:ro
|
||||||
- /mnt/tank/app-data/scrutiny/:/config
|
- /mnt/tank/app-data/scrutiny/:/config
|
||||||
environment:
|
environment:
|
||||||
- SCRUTINY_COLLECTOR=true
|
- SCRUTINY_COLLECTOR=true
|
||||||
- SCRUTINY_WEB=false
|
|
||||||
- SCRUTINY_API_ENDPOINT=http://web:8080
|
- SCRUTINY_API_ENDPOINT=http://web:8080
|
||||||
- PUID={{ docker_user.id }}
|
- PUID={{ docker_user.id }}
|
||||||
- PGID={{ docker_user.id }}
|
- PGID={{ docker_user.id }}
|
||||||
|
|
Loading…
Reference in a new issue