Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Continuous deployment with Web App for Containers using Azure Container Registry – Part 2

  1. Download docker CLI or docker for windows.

I am installing Docker on my local windows 10 from https://www.docker.com/docker-windows

after installation I could see this in tray icon:

                      

  1. Signup for a docker account at https://cloud.docker.com/ & activate the account & sign in .
  2. Login to docker on your PC.

                     

  1. Download any container image from Docker hub to local using CLI :

For this example, I am using nginx image , thus we shall download it from docker by running this command on command prompt.

docker pull nginx

                  

  1. By default, the image tag is taken as latest.
  2. Verify image is up and running on local :

running this command on command prompt

docker run -it --rm -p 8080:80 nginx

and in browser open url  http://localhost:8080/

Share the post

Continuous deployment with Web App for Containers using Azure Container Registry – Part 2

×

Subscribe to Msdn Blogs | Get The Latest Information, Insights, Announcements, And News From Microsoft Experts And Developers In The Msdn Blogs.

Get updates delivered right to your inbox!

Thank you for your subscription

×