Add watchtower to ansible for real and fix .gitignore

This commit is contained in:
Tobias Reisinger 2023-06-16 13:18:31 +02:00
parent 5908976abc
commit 9425376412
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
4 changed files with 52 additions and 7 deletions
_ansible/roles/watchtower/vars

View file

@ -0,0 +1,27 @@
svc:
name: watchtower
svc_env:
WATCHTOWER_LABEL_ENABLE: true
WATCHTOWER_CLEANUP: true
WATCHTOWER_SCHEDULE: "0 27 20 * * *"
WATCHTOWER_NOTIFICATIONS: email
WATCHTOWER_NOTIFICATION_EMAIL_FROM: "{{ svc.name }}@serguzim.me"
WATCHTOWER_NOTIFICATION_EMAIL_TO: "{{ admin_email }}"
WATCHTOWER_NOTIFICATION_EMAIL_SERVER: "{{ mailer.host }}"
WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PORT: "{{ mailer.port }}"
WATCHTOWER_NOTIFICATION_EMAIL_SERVER_USER: "{{ svc.name }}@serguzim.me"
WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PASSWORD: "{{ vault_watchtower.mailer.pass }}"
WATCHTOWER_NOTIFICATION_EMAIL_DELAY: 5
compose:
watchtower: false
image: containerrr/watchtower
env: true
volumes:
- /var/run/docker.sock:/var/run/docker.sock
file:
services:
app:
hostname: "{{ ansible_facts.hostname }}"