This lab demonstrates how to build, store, and deploy containerized applications using Azure Container Registry (ACR) and Azure Web App for Containers.
git clone https://github.com/bipeensinha/ecom.git cd e-com ls docker pull nginx:alpine docker build -t bipecom . docker images docker run -d -p 8080:80 --name ecom bipecom