Diun v2 to v3¶
File provider¶
static provider has been renamed file. This now allows the static configuration to be declared in one or more files to avoid overloading the current configuration file and also dynamic updating.
v2
providers:
static:
- name: docker.io/crazymax/diun
watch_repo: true
max_tags: 10
v3
providers:
file:
# Watch images from filename /path/to/config.yml
filename: /path/to/config.yml
# OR watch images from directory /path/to/config/folder
directory: /path/to/config/folder
# /path/to/config.yml
- name: docker.io/crazymax/diun
watch_repo: true
max_tags: 10
Allow only one Docker and Swarm provider¶
Now you can declare only one Docker and/or Swarm provider. This is due to a limitation of the Docker engine.
v2
providers:
docker:
mydocker:
watch_stopped: true
swarm:
myswarm:
watch_by_default: true
v3
providers:
docker:
watch_stopped: true
swarm:
watch_by_default: true
Remove enable setting for notifiers¶
The enable entry has been removed for notifiers. If you don't want a notifier to be enabled, you must now remove or comment its configuration.
v2
notif:
amqp:
enable: false
host: localhost
port: 5672
gotify:
enable: true
endpoint: http://gotify.foo.com
token: Token123456
priority: 1
timeout: 10
v3
notif:
gotify:
endpoint: http://gotify.foo.com
token: Token123456
priority: 1
timeout: 10
Last update:
2020-06-19 22:47:17
Created: 2020-06-19 22:47:17
Created: 2020-06-19 22:47:17