You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The manifests referring to rabbitmq currently does not mention any registry in the image name, therefore by default dockerhub is used, risking to hit the dockerhub pull limit.
A registry might be explicitly used in the image name selection, in order to use an alternative registry without a pull limit.
Example of a current workaround: grep -r 'rabbitmq:3.11.19-management' | awk '{print $1}' | tr -d ':' | xargs -I {} sed -i 's%rabbitmq:3.11.19-management%public.ecr.aws/docker/library/rabbitmq:3.11-management%g' {}
The text was updated successfully, but these errors were encountered:
The manifests referring to rabbitmq currently does not mention any registry in the image name, therefore by default dockerhub is used, risking to hit the dockerhub pull limit.
A registry might be explicitly used in the image name selection, in order to use an alternative registry without a pull limit.
Example of a current workaround:
grep -r 'rabbitmq:3.11.19-management' | awk '{print $1}' | tr -d ':' | xargs -I {} sed -i 's%rabbitmq:3.11.19-management%public.ecr.aws/docker/library/rabbitmq:3.11-management%g' {}
The text was updated successfully, but these errors were encountered: