Skip to content

Deploy container on Azure Container Registry

Giovanni Emanuele Nocco edited this page Aug 24, 2020 · 1 revision

This procedure explain how to create and push a docker image on Azure docker container registry

The Container registry name is: genocsregistry

The Container registry path is: genocsregistry.azurecr.io

docker build -t genocsregistry.democontainer .

az acr login --name genocsregistry
docker login genocsregistry.azurecr.io

docker tag genocs.democontainer genocsregistry.azurecr.io/genocs.democontainer:v1
docker push genocsregistry.azurecr.io/genocs.democontainer:v1
docker pull genocsregistry.azurecr.io/genocs.democontainer:v1

How to run the container

docker run -p 89:80 -d --name democontainer-instance genocsregistry.azurecr.io/genocs.democontainer:v1
  • Setup the project

    • Describe the idea
    • Identify the product shape
  • Project management

    • Define the MVP (Minimum Viable Product)
    • Identify the KPIs (Key Performance Indicators)
    • Define the process
    • Identify and define the roadmap, checkpoints, deadlines
  • Implement the solution

    • Patterns and practices
    • Technologial Stack
    • Tools, languages, libraries and services
  • Operations maintenance support and feedback

    • Strategical organization
    • Pratical implementation

Clone this wiki locally