only run watchtower on trusted images
This commit is contained in:
parent
c029b02d53
commit
afba0731b1
1 changed files with 14 additions and 0 deletions
14
watchtower/docker-compose.yml
Normal file
14
watchtower/docker-compose.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
services:
|
||||
watchtower-invidious:
|
||||
image: containrrr/watchtower
|
||||
container_name: watchtower-invidious
|
||||
restart: unless-stopped
|
||||
volumes: [ "/var/run/docker.sock:/var/run/docker.sock" ]
|
||||
command: --interval 30 --scope invidious
|
||||
|
||||
watchtower-trusted:
|
||||
image: containrrr/watchtower
|
||||
container_name: watchtower-trusted
|
||||
restart: unless-stopped
|
||||
volumes: [ "/var/run/docker.sock:/var/run/docker.sock" ]
|
||||
command: --interval 900 --scope trusted
|
Loading…
Add table
Reference in a new issue