Deploy with Azure Container Apps
Hey everyone! 👋
Below you’ll find a presentation on deploying containerized applications in Azure.
You can browse through the images right here — and feel free to drop your thoughts or questions in the comments. 🚀
Copy code:
docker build -t myapp:v1 .
Copy code:
az login​
az acr login --name myregistry​
docker tag myapp:v1 myregistry.azurecr.io/myapp:v1​
docker push myregistry.azurecr.io/myapp:v1
Copy code:
az containerapp up \​
--name myapp \​
--resource-group mygroup \​
--image myregistry.azurecr.io/myapp:v1 \​
--target-port 80 \​
--ingress external
Thanks for checking out the presentation! 🙌
I hope it helped you get a clearer picture of how to simplify app deployments in Azure.
Share your feedback or questions in the comments! 💬
Top comments (0)