Files
diun/docs/migration/v0-to-v1.md
CrazyMax db2bce3bb3 Docs website with mkdocs (#100)
* Fix build workflow

* Docs website with mkdocs (#99)

* Fix docs workflow

* Move mkdocs Docker file

* Ignore docs in build workflow

* Update workflows

* Update links

* Move upgrade notes to documentation

Co-authored-by: CrazyMax <crazy-max@users.noreply.github.com>
2020-06-19 22:47:17 +00:00

900 B

Diun v0 to v1

Some fields in configuration file has been changed:

  • registries renamed regopts
  • items renamed image
  • items[].image renamed image[].name
  • items[].registry_id renamed image[].regopts_id
  • watch.os and watch.arch moved to image[].os and image[].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 watch: os: linux arch: amd64

registries:
  someregistryoptions:
    username: foo
    password: bar
    timeout: 20

items:
  - image: docker.io/crazymax/nextcloud:latest
    registry_id: someregistryoptions
```