Skip to content

Instantly share code, notes, and snippets.

@qrkourier
Last active May 22, 2024 15:46
Show Gist options
  • Save qrkourier/3d9ab3e3e79547e807d821010d9e361e to your computer and use it in GitHub Desktop.
Save qrkourier/3d9ab3e3e79547e807d821010d9e361e to your computer and use it in GitHub Desktop.
Tag the last known good semver as latest
(set -euxopipefail
GOOD_VERSION=1.0.0
for REPO in ziti-{cli,controller,router}; do
docker buildx imagetools create --tag openziti/${REPO}:latest openziti/${REPO}:${GOOD_VERSION}
done
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment