Skip to content

Instantly share code, notes, and snippets.

@yuvalif
Last active October 4, 2021 10:56
Show Gist options
  • Select an option

  • Save yuvalif/556a47f7aedd7e54219527e6d20f7880 to your computer and use it in GitHub Desktop.

Select an option

Save yuvalif/556a47f7aedd7e54219527e6d20f7880 to your computer and use it in GitHub Desktop.

docker rate limit is causing issues in lab/cloud machines, since many of them share the same external IP. possible workaround is to move the image to quay. for example the rabbitmq:3.8.21-management needed for the rabbitmq k8s operator.

from a laptop or local machine, pull the image, retag it, and push to quay:

podman pull docker.io/library/rabbitmq:3.8.21-management
podman tag rabbitmq:3.8.21-management quay.io/ylifshit/rabbitmq:3.8.21-management
podman push quay.io/ylifshit/rabbitmq:3.8.21-management

go to quay.io and make the new repo "public" (since its is created "private" by default).

from the lab/cloud machine pull from quay and retag the image:

podman pull quay.io/ylifshit/rabbitmq:3.8.21-management
podman tag quay.io/ylifshit/rabbitmq:3.8.21-management quay.io/rabbitmq:3.8.21-management
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment