Skip to content

Commit c5dd766

Browse files
authored
Update translator-container-configuration.md
1 parent 1f5ac9d commit c5dd766

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

articles/ai-services/translator/containers/translator-container-configuration.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,28 @@ This setting can be found in the following place:
7070

7171
## HTTP proxy credentials settings
7272

73-
[!INCLUDE [Container shared HTTP proxy settings](../../../../includes/cognitive-services-containers-configuration-shared-settings-http-proxy.md)]
73+
If you need to configure an HTTP proxy for making outbound requests, use these two arguments:
74+
75+
| Name | Data type | Description |
76+
|--|--|--|
77+
|HTTPS_PROXY|string|The proxy to use, for example, `http://proxy:8888`<br>`<proxy-url>`|
78+
|HTTP_PROXY_CREDS|string|Any credentials needed to authenticate against the proxy, for example, `username:password`. This value **must be in lower-case**. |
79+
|`<proxy-user>`|string|The user for the proxy.|
80+
|`<proxy-password>`|string|The password associated with `<proxy-user>` for the proxy.|
81+
||||
82+
83+
84+
```bash
85+
docker run --rm -it -p 5000:5000 \
86+
--memory 2g --cpus 1 \
87+
--mount type=bind,src=/home/azureuser/output,target=/output \
88+
<registry-location>/<image-name> \
89+
Eula=accept \
90+
Billing=<endpoint> \
91+
ApiKey=<api-key> \
92+
HTTP_PROXY=<proxy-url> \
93+
HTTP_PROXY_CREDS=<proxy-user>:<proxy-password> \
94+
```
7495

7596
## Logging settings
7697

0 commit comments

Comments
 (0)