mirror of
https://gitea.invidious.io/iv-org/infrastructure.git
synced 2024-08-15 00:53:31 +00:00
Merge pull request #9 from iv-org/watchtower
Setup Watchtower to update the documentation automatically
This commit is contained in:
commit
c419d92b89
2 changed files with 16 additions and 0 deletions
6
dia.yml
6
dia.yml
|
@ -85,6 +85,12 @@
|
|||
app: "docs.invidious.io"
|
||||
tags: [docs, docker]
|
||||
|
||||
- name: Deploy watchtower
|
||||
import_tasks: tasks/compose.yml
|
||||
vars:
|
||||
app: "watchtower"
|
||||
tags: [watchtower, docker]
|
||||
|
||||
- name: caddy
|
||||
import_role:
|
||||
name: caddy_ansible.caddy_ansible
|
||||
|
|
10
templates/compose/watchtower.yml
Normal file
10
templates/compose/watchtower.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
services:
|
||||
watchtower:
|
||||
container_name: watchtower
|
||||
image: ghcr.io/containrrr/watchtower:1.7.1
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- 'WATCHTOWER_CLEANUP=true'
|
||||
volumes:
|
||||
- '/var/run/docker.sock:/var/run/docker.sock'
|
||||
command: --interval 3600 docsinvidiousio_docs_1
|
Loading…
Reference in a new issue