0
0
Fork 0
mirror of https://github.com/crazy-max/diun.git synced 2025-01-27 01:08:50 +00:00
crazy-max_diun/docs/migration/v1-to-v2.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

20 lines
381 B
Markdown

# Diun v1 to v2
`image` field has been moved to `providers.static` in configuration file:
!!! example "v1"
```yaml
image:
- name: docker.io/crazymax/diun
watch_repo: true
max_tags: 10
```
!!! example "v2"
```yaml
providers:
static:
- name: docker.io/crazymax/diun
watch_repo: true
max_tags: 10
```