< Previous Solution - Home - Next Solution >
This is PATH C: Use this path if your students understand docker, don’t care about building images , and/or have environments issues that would prevent them from building containers locally. In this path, your students will will create an Azure Container Registry, and then will import the images to their ACR.
The students will need to be able to run the Azure cli. Ideally this would be run from their local workstation, but it could also be the Azure Cloud Shell.
The coach should demonstrate running the application locally. To run the Fab Medical application locally:
npm install
node ./server.js &
http://localhost:3001/speakers
CONTENT_API_URL
that points to the API app’s URL.http://localhost:3001
localhost
only works when both apps are run locally using Node. You will need a different value for the environment variable when running in Docker.ps
command to list all processes running, and then the Linux kill
command to kill the two Node.js processes.If the students get stuck, point them to the ACR documentation:
az acr create -n <name of registry> -g <resource group> --sku Standard
az acr login --name <name of ACR>
az acr repository list --name <name of ACR>