Hi ARMANDO LOPEZ,
Thank you for reaching out to Microsoft Q & A forum.
It appears that your Azure Container Instance was successfully created; however, the Fully Qualified Domain Name (FQDN) or public IP address is not visible. To resolve this, I recommend reviewing the following points:
1.Networking Configuration: Confirm that the container instance was configured with a Public networking type in the Networking tab during setup. If it was set to Private, the instance will not have a public IP address or FQDN.
2.DNS Name Label: Ensure that a unique DNS name label was provided in the Networking tab. If this field is left empty or if the name is not unique, Azure may not assign an FQDN.
3.Ports: Check that port 80 (or the port you are using) is open and that the protocol is set to TCP under the Ports section.
4.Azure Portal: Once the container instance is created, navigate to the Overview pane in the Azure Portal. The FQDN and public IP should be displayed there. Alternatively, you can use the Azure CLI to retrieve the public IP address with the following command:
az container show --resource-group <your-resource-group> --name <your-instance-name> --query ipAddress
5.Container Logs: If the issue persists, review the container logs to identify any potential errors that could explain the absence of the FQDN or public IP.
Should you have verified all these configurations and still encounter the same issue, it may be worthwhile to redeploy the instance, ensuring that each step is carefully followed.
Please feel free to contact us if you have any additional questions.
If you have found the answer provided to be helpful, please click on the "Accept answer/Upvote" button so that it is useful for other members in the Microsoft Q&A community.
Thank you.