mirror of
https://github.com/crazy-max/diun.git
synced 2025-12-24 06:28:13 +01:00
883 B
883 B
Diun v0 to v1
Some fields in configuration file has been changed:
registriesrenamedregoptsitemsrenamedimageitems[].imagerenamedimage[].nameitems[].registry_idrenamedimage[].regopts_idwatch.osandwatch.archmoved toimage[].osandimage[].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
```