30 lines
781 B
Django/Jinja
30 lines
781 B
Django/Jinja
watch:
|
|
schedule: "{{ diun_schedule | default('0 */6 * * *') }}"
|
|
firstCheckNotif: false
|
|
|
|
providers:
|
|
docker:
|
|
watchByDefault: true
|
|
watchStopped: false
|
|
|
|
{% if diun_notify_email | default(false) or diun_notify_matrix | default(false) %}
|
|
notif:
|
|
{% if diun_notify_email | default(false) %}
|
|
mail:
|
|
host: {{ mail_hostname }}
|
|
port: 587
|
|
ssl: false
|
|
insecureSkipVerify: false
|
|
username: {{ diun_email_user }}
|
|
password: {{ diun_email_password }}
|
|
from: {{ diun_email_user }}
|
|
to: {{ diun_email_to }}
|
|
{% endif %}
|
|
{% if diun_notify_matrix | default(false) %}
|
|
matrix:
|
|
homeserverURL: https://{{ tuwunel_domain }}
|
|
user: {{ diun_matrix_user }}
|
|
password: {{ diun_matrix_password }}
|
|
roomID: {{ diun_matrix_room_id }}
|
|
{% endif %}
|
|
{% endif %}
|