Hi nicola,
Welcome to the Microsoft Q&A Platform! Thank you for asking your question here.The error might be a temporary issue with Docker Hub, waiting a few minutes and retrying might resolve it. please retry once again.Please verify that the repository name is correct and accessible publicly.
The most common cause of the error is rate limiting by Docker Hub. Ensure that you're not hitting the rate limit for unauthenticated requests. You can refer to this document for more information regarding rate limits and how to check it https://docs.docker.com/docker-hub/download-rate-limit/
If you're using a custom template, ensure its correctly structured for a public Docker repository and deploy the template via CLI: For example
resources:
- name: myaci
type: Microsoft.ContainerInstance/containerGroups
apiVersion: '2021-07-01'
location: <location>
properties:
containers:
- name: nginx
properties:
image: nginx:latest
resources:
requests:
cpu: 1
memoryInGB: 1.5
ports:
- port: 80
osType: Linux
ipAddress:
type: Public
ports:
- protocol: tcp
port: 80
You can create an Azure Container Instance using a custom template.
Please refer to this documentation https://learn.microsoft.com/en-us/azure/container-instances/container-instances-quickstart-template
If you have any further queries, please do let us know.
If the answer is helpful, please click "Accept Answer" and "Upvote it."