mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-04-08 17:15:08 +02:00
RELEASE.md: add Docker section
This commit is contained in:
parent
8e971406f7
commit
250ae929dd
24
RELEASE.md
24
RELEASE.md
@ -238,6 +238,30 @@ Create a new release for the newly created Git tag: https://github.com/Icinga/ic
|
|||||||
|
|
||||||
Use the changelog for the release body.
|
Use the changelog for the release body.
|
||||||
|
|
||||||
|
## Docker
|
||||||
|
|
||||||
|
> Only for final versions (not for RCs).
|
||||||
|
|
||||||
|
Once the release has been published on GitHub, wait for its
|
||||||
|
[GitHub actions](https://github.com/Icinga/icingaweb2/actions) to complete.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
VERSION=2.9.1
|
||||||
|
|
||||||
|
TAGS=(2.9)
|
||||||
|
#TAGS=(2.9 2 latest)
|
||||||
|
|
||||||
|
docker pull icinga/icingaweb2:$VERSION
|
||||||
|
|
||||||
|
for t in "${TAGS[@]}"; do
|
||||||
|
docker tag icinga/icingaweb2:$VERSION icinga/icingaweb2:$t
|
||||||
|
done
|
||||||
|
|
||||||
|
for t in "${TAGS[@]}"; do
|
||||||
|
docker push icinga/icingaweb2:$t
|
||||||
|
done
|
||||||
|
```
|
||||||
|
|
||||||
## Online Documentation
|
## Online Documentation
|
||||||
|
|
||||||
This is built with a daily cronjob.
|
This is built with a daily cronjob.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user