Home > Net >  Azure Container instances no IP
Azure Container instances no IP

Time:10-07

I created a Container Instance in Azure and used a Hello World image. However, I do not get any IP to access the webserver!

Container Instance with no public IP

CodePudding user response:

TL;DR. You might want to use the CLI (or other methods) to deploy ACI. Be sure to set either --ip_address public or --dns-name-label <blah> enter image description here

I created another container instance using CLI by following this document enter image description here

So, we can create container instance with CLI for workaround.

  • Related