December 2019
Intermediate to advanced
528 pages
11h 19m
English
Now, you should be able to open PowerShell and type the following:
docker images
This will give you a list of any Docker images that you currently have on your machine. A container registry is essentially a remote version of this; that is, you create an image and upload it to a registry. When we're uploading to AKS, we'll need our image to be in a container registry. Although Azure does have its own container registry, you can use any; Docker has a container registry, and so do most (if not all) of the big cloud providers. In this section, we'll be uploading to Azure Container Registry (ACR).
Up until now, we've pretty much been relying on Visual Studio to manage our Docker image; at the time of writing, this is a ...