Error :The image name should be specified as a URI or a Docker Hub tag without protocal.

Tommy 0 Reputation points
2024-05-23T16:01:35.13+00:00

I try to deploy an Image to Azure Container Instances from the private Container Registry of my University wich is accessible at git.my-university.de:4567 via the Azure Portal. However, when I enter the details of the Image the following message appears:

145124-2021-10-30-10-01-56-create-container-instance-micr.png

Is there a way around this restriction?

Azure Container Registry
Azure Container Registry
An Azure service that provides a registry of Docker and Open Container Initiative images.
415 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Anveshreddy Nimmala 3,285 Reputation points Microsoft Vendor
    2024-05-23T17:17:39.1933333+00:00

    Hello

    Welcome to microsoft Q&A, thankyou for posting your query here.

    You can pull your image to docker from your registry and tag with docker tag, then try using it to deploy ACI.

    docker login git.my-university.de:4567

    docker pull git.my-university.de:4567/my-repo/my-image:latest (to pull locally)

    docker tag git.my-university.de:4567/my-repo/my-image:latest <docker_registry>/<your-repository>/my-image:latest

    docker push <docker_registry>/<your-repository>/my-image:latest (to push docker hub)

    Make sure your credentials (username and password) are correct. The registry URL is correct and accessible. The repository, image name, and tag are correctly specified.

    You have network access to the registry.

    Hope this helps you

    0 comments No comments