Go to file
phil aeefc2a763 Add configuration example 2023-03-01 13:32:51 +01:00
defaults Add provider file for watching images 2023-03-01 13:12:39 +01:00
handlers Initial 2023-03-01 10:56:33 +01:00
meta Initial 2023-03-01 10:56:33 +01:00
tasks Add provider file for watching images 2023-03-01 13:12:39 +01:00
templates Add provider file for watching images 2023-03-01 13:12:39 +01:00
README.md Add configuration example 2023-03-01 13:32:51 +01:00

README.md

DIUN - Docker Image Update Notifier

This role installs Duin. Configuration is done via your host_vars files:

diun_watch:
  config: |
    workers: 10
    schedule: "0 */6 * * *"
    jitter: 30s
    firstCheckNotif: false    

diun_notif:
  - name: mail
    config: |
      host: localhost
      port: 25
      ssl: false
      insecureSkipVerify: false
      from: diun@example.org
      to:
        - admin@example.org      

diun_providers:
  - name: docker
    config: |
      watchByDefault: true
      watchStopped: true
      endpoint: "unix:///run/docker.sock"      
  - name: file
    config: |
      filename: {{ diun_configuration_path }}/{{ diun_provider_image_file }}      

diun_provider_images:
  - name: docker.io/discourse/base:release