Andrew Pruski shows us how to store Docker images in Azure:
I’m going to push my custom dbafromthecold/sqlserverlinuxagent image. It’s a public image so if you want to use it, just run: –
docker pull dbafromthecold/sqlserverlinuxagent:latestSo similar to pushing to the Docker hub, we need to tag the image with the login server name that we retrieved a couple of commands ago and the name of the image: –
docker tag dbafromthecold/sqlserverlinuxagent apcontainerregistry01.azurecr.io/sqlserverlinuxagent:latest
Read on for a full example.
Comments closed