You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/container-instances/container-instances-troubleshooting.md
+9-7Lines changed: 9 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,14 +7,16 @@ manager: gwallace
7
7
8
8
ms.service: container-instances
9
9
ms.topic: article
10
-
ms.date: 04/25/2019
10
+
ms.date: 09/25/2019
11
11
ms.author: danlep
12
12
ms.custom: mvc
13
13
---
14
14
15
15
# Troubleshoot common issues in Azure Container Instances
16
16
17
-
This article shows how to troubleshoot common issues for managing or deploying containers to Azure Container Instances. See also [Frequently asked questions](container-instances-faq.md).
17
+
This article shows how to troubleshoot common issues for managing or deploying containers to Azure Container Instances. See also [Frequently asked questions](container-instances-faq.md).
18
+
19
+
If you need additional support, see available **Help + support** options in the [Azure portal](https://portal.azure.com/?#blade/Microsoft_Azure_Support/HelpAndSupportBlade).
18
20
19
21
## Naming conventions
20
22
@@ -198,19 +200,19 @@ Azure Container Instances does not expose direct access to the underlying infras
198
200
199
201
## Container group IP address may not be accessible due to mismatched ports
200
202
201
-
Azure Container Instances does not currently support port mapping like with regular docker configuration, however this fix is on the roadmap. If you find a container group's IP address is not accessible when you believe it should be, ensure you have configured your container image to listen to the same ports you expose in your container group with the `ports` property.
203
+
Azure Container Instances doesn't yet support port mapping like with regular docker configuration. If you find a container group's IP address is not accessible when you believe it should be, ensure you have configured your container image to listen to the same ports you expose in your container group with the `ports` property.
202
204
203
205
If you want to confirm that Azure Container Instances can listen on the port you configured in your container image, test a deployment of the `aci-helloworld` image that exposes the port. Also run the `aci-helloworld` app so that it listens on the port. `aci-helloworld` accepts an optional environment variable `PORT` to override the default port 80 it listens on. For example, to test port 9000:
204
206
205
-
1. Set up the container group to expose port 9000, and pass port 9000 as the value of the environment variable. Substitute a unique value of `dns-label-name`:
207
+
1. Set up the container group to expose port 9000, and pass the port number as the value of the environment variable:
206
208
```azurecli
207
209
az container create --resource-group myResourceGroup \
1. Find the FQDN or IP address of the container group in the command output of `az container create`.
213
-
1. After the container is provisioned successfully, browse to the FQDN and port of the container app in your browser, for example: `http://porttest001.eastus.azurecontainer.io:9000`.
214
+
1. Find the IP address of the container group in the command output of `az container create`. Look for the value of **ip**.
215
+
1. After the container is provisioned successfully, browse to the IP address and port of the container app in your browser, for example: `192.0.2.0:9000`.
214
216
215
217
You should see the "Welcome to Azure Container Instances!" message displayed by the web app.
216
218
1. When you're done with the container, remove it using the `az container delete` command:
0 commit comments