Hello everyone! Has anyone experienced the followi...
# ask-community
c
Hello everyone! Has anyone experienced the following error when trying to create an Azure container instance to run Prefect? (RegistryErrorResponse) An error response is received from the docker registry 'index.docker.io'. Please retry later. Code: RegistryErrorResponse Message: An error response is received from the docker registry 'index.docker.io'. Please retry later.
b
Hi Charlie! It sounds like you're getting hit with the new rate limits that Docker Hub implemented on June 30th of this year.
Impact on Azure Container Services
```Error:
(RegistryErrorResponse) An error response is received from the docker registry 'index.docker.io'. Please retry later.
Code: RegistryErrorResponse```
There's a few ways to go about addressing it in the article, and I think my personal favorite way of addressing it would be:
1. Leverage Azure Container Registry (ACR): Store your Docker Hub images in an ACR instance and configure your ACI and AKS deployments to pull from this private registry. This will help you avoid the Docker Hub rate limits.
This guide gives a complete walkthrough of how to 1. Create a Resource Group in Azure 2. Prepare ACI permissions 3. Create the azure worker 4. Create an ACR registry 5. Create an azure prefect work pool 6. Build your image/push it to your registry 7. Deploy a flow to ACI