Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: details for publishing docker image

...

The Ozone docker image is intended for testing purposes only, not production use. Therefore, it is ok to update this after announcing the release. An example pull request to update the docker image is here. The target branch for your pull request should be latest. After the pull request is merged, it can be published to docker hub by fast-forwarding the ozone-latest branch to match the latest branch.  Also, create a new branch named like ozone-1.5.0 (replace the version) and push it to GitHub.

Code Block
languagebash
git checkout ozone-latest
git pull
git merge --ff-only origin/latest
git checkout -b ozone-1.5.0
git push origin ozone-latest ozone-1.5.0


Patch Release

If there is a security vulnerability or critical bug uncovered in a major or minor Ozone release, a patch release may be necessary to fix this. The process is a bit simpler than a major or minor release, since there is already a solid foundation on the release's maintenance branch.

...