Skip to content

Commit

Permalink
feat(docs): update Docker commands to include port 8080
Browse files Browse the repository at this point in the history
Updated the Docker run commands in the README to expose port 8080 alongside port 1080. This ensures better configurability and support for additional features or services requiring port 8080.
  • Loading branch information
ryanbekhen committed Dec 12, 2024
1 parent 656d7f6 commit 8c4115f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,13 +208,13 @@ nanoproxy
You can also run NanoProxy using Docker. To do so, you can use the following command:

```shell
docker run -p 1080:1080 ghcr.io/ryanbekhen/nanoproxy:latest
docker run -p 1080:1080 -p 8080:8080 ghcr.io/ryanbekhen/nanoproxy:latest
```

You can also run NanoProxy behind Tor using the following command:

```shell
docker run --rm -e TOR_ENABLED=true -d --privileged --cap-add=NET_ADMIN --sysctl net.ipv6.conf.all.disable_ipv6=0 --sysctl net.ipv4.conf.all.src_valid_mark=1 -p 1080:1080 ghcr.io/ryanbekhen/nanoproxy-tor:latest
docker run --rm -e TOR_ENABLED=true -d --privileged --cap-add=NET_ADMIN --sysctl net.ipv6.conf.all.disable_ipv6=0 --sysctl net.ipv4.conf.all.src_valid_mark=1 -p 1080:1080 -p 8080:8080 ghcr.io/ryanbekhen/nanoproxy-tor:latest
```

## Configuration
Expand Down

0 comments on commit 8c4115f

Please sign in to comment.