Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -320,12 +320,20 @@ docker run luminati/luminati-proxy proxy-manager --version
```
Make sure to forward appropriate ports. Proxy manager uses by default 22999
for the web console and the api, 22225 for dropin and 24000 for first
configurable proxy.
configurable proxy. docker run -p 22999:22999 -p 22225:22225 -p 24000:24000

- To run docker with cli option see the below example:
```sh
docker run luminati/luminati-proxy proxy-manager --www_whitelist_ips "172.17.0.1" --ssl true
```

With port forwarding
```sh
docker run -p 22999:22999 -p 22225:22225 -p 24000:24000 luminati/luminati-proxy proxy-manager --www_whitelist_ips "172.17.0.1" --ssl true
```



You can add many more options to this run.

#### Docker with predefined config file
Expand Down