- Azure Account
- Azure CLI
- Run the
login
command in the command prompt or terminal:az login
- Sign in with your account credentials in the browser
- Run the
- Docker Desktop
The purpose of this guide is to help you pull a generic Docker image, run it on your personal machine, and then access the container remotely after pushing to Azure. You will need to have Docker installed on your local machine and an azure account.
The first step is to create an Azure container registry. You will then want to enable admin privleges, setup a username and make sure you have access to you password in the access key tab.
- Create a resource group
myResourceGroup
should be replaced with the name of your rescource group name
az group create --name myResourceGroup --location eastus
- Create container registry with az acr create
<acrName>
should be replaced with a unique name containing 5-50 alphanumeric characters
az acr create --resource-group myResourceGroup --name <acrName> --sku Basic
- Log in to container registery
az acr login --name <acrName>
<acrName>
is the same name used in previous step
Pull a container to your local machine.
For now, we can use an example container rocker/rstudio
.
docker pull rocker/rstudio
Once you have pulled the image it is time to run the container locally. This can be done in one of two ways. In Docker Desktop you may select the image to run as a container or you can run a new container from the command line.
docker run -e PASSWORD=12345 -p 8787:8787 rocker/rstudio
You should be able to access the running container from http://localhost:8787 and login with the username 'rstudio' and pasword '12345'
Once the container is running locally you can move on to running the container as a web application hosted on Azure.
- Login to the Azure Container Registery created earlier
docker login <login server name>
You will be prompted to login with the credentials you setup in the container registry.
- It is important to rename the container according to the container registry we wish to push to. This allows us to have a smooth transition as we move the container to a remote host.
docker tag rocker/rstudio <login server name>/rocker/rstudio
After renaming the container to match the registry you may simply push your image to container registry as follows:
docker push <login server name>/rocker/rstudio
Your container should now be visible within your container registry.
Navigating to your Azure portal you will now create a new resource.
We want to select a web application but for the publish options select Docker Container.
Then for the image source, you may select Azure Container Registry. Now you should be able to select the registry and image that were pushed earlier.
Once your app is created, you should be provided with a link to access your Docker Container which is now hosted on Azure.
Or navigate All resources
-> <appName>(shown as a type 'App Service')
click Start
and then Browse
. This may take a while to load.
NOTE: You may need to adjust your app service plan depending on the container. This is found in the settings bar of the app you created. Likely you could just use the Scale up(App Service plan)
link to make needed changes.
This guide is intended to be written as an extension of and explanation of this Guide for pushing a generic container
Data Science and Azure Tutorial: Deploy a multi-container group using Docker Compose