mirror of
https://github.com/crazy-max/diun.git
synced 2025-01-12 11:38:11 +00:00
883 B
883 B
Diun v0 to v1
Some fields in configuration file has been changed:
registries
renamedregopts
items
renamedimage
items[].image
renamedimage[].name
items[].registry_id
renamedimage[].regopts_id
watch.os
andwatch.arch
moved toimage[].os
andimage[].arch
!!! example "v0" ```yaml watch: os: linux arch: amd64
registries:
someregistryoptions:
username: foo
password: bar
timeout: 20
items:
- image: docker.io/crazymax/nextcloud:latest
registry_id: someregistryoptions
```
!!! example "v1" ```yaml regopts: someregistryoptions: username: foo password: bar timeout: 20
image:
- name: docker.io/crazymax/nextcloud:latest
regopts_id: someregistryoptions
os: linux
arch: amd64
```