You can obtain it via:
docker pull dengrenjie31/popub-relay
If you want to build it by yourself, you should first run:
docker pull ubuntu
Then go to popub-relay
diretory and
docker build -t popub-relay .
docker run -d \
--name=popub-relay \
--restart=always \
-p <Receive Port>:<Receive Port> \
-p <Exposed Port>:<Exposed Port> \
dengrenjie31/popub-relay :<Receive Port> :<Exposed Port> <Password>
--name=popub-relay
You can use whatever name you want<Receive Port>
The port to receive data from local device<Exposed Port>
The port you use to access reversed proxy
You can obtain it via:
docker pull dengrenjie31/popub-local
If you want to build it by yourself, you should first run:
docker pull ubuntu
Then go to popub-local
diretory and
docker build -t popub-local .
docker run -d \
--name=popub-local \
--restart=always \
dengrenjie31/popub-local <Local IP>:<Local Port> <Remote IP>:<Remote Port> <Password>
--name=popub-local
You can use whatever name you want<Local IP>
Obtain it byip addr show docker0
and use the IPv4 address afterinet
<Local Port>
Local port you want to expose to remote machine which has a public network IP<Remote IP>
Remote machine which has a public network IP.<Remote Port>
A port in remote machine to receive data sent from the local machine.
You can obtain it via:
docker pull dengrenjie31/popub-local-arm64
If you want to build it by yourself, you should first run:
docker pull arm64v8/ubuntu
Then go to popub-local-arm64
diretory and
docker build -t popub-local-arm64 .
docker run -d \
--name=popub-local \
--restart=always \
dengrenjie31/popub-local-arm64 <Local IP>:<Local Port> <Remote IP>:<Remote Port> <Password>
--name=popub-local
You can use whatever name you want<Local IP>
Obtain it byip addr show docker0
and use the IPv4 address afterinet
<Local Port>
Local port you want to expose to remote machine which has a public network IP<Remote IP>
Remote machine which has a public network IP.<Remote Port>
A port in remote machine to receive data sent from the local machine.
The program is licensed under GNU General Public License v3.0. See LICENSE for details.