Deployment in Azure for one container

Kajasumanie Kanapathipillai
4 min readMay 14, 2019

Overview

If you are thinking to learn new skills, you cannot go wrong with learning how to build, run, and manage containers and how containerized application in Azure.

My goal with this tutorial is to give you some new ideas to try out on your own.

Create a project with docker support

1. Docker Installation

a. Download from docker hub.

Link: https://download.docker.com/win/stable/Docker%20for%20Windows%20Installer.exe

b. Double click docker destop fro windows installer.exe

c. Follow the install wizard to accept the license, authorize the installer and proceed with the install.

d. Click finish on the setup complete the dialog to launch Docker .

2. Test your installation

a. Open a terminal window (Command Prompt or PowerShell, but not PowerShell ISE).

b. Run docker — version to ensure that you have a supported version of Docker :

c. Pull the hello-world image from Docker Hub and run a container:

Once you done with your installation process started to create a project with docker support

--

--