我正在寻找一个码头容器,以匿名浏览互联网通过I2P网络内的Linux容器。
它应该是容易使用和连接到I2P网络启动。
我可以使用ZedCode/docker-i2p (I2P dockerized),但它需要本地浏览器的配置。我需要的是在容器中使用命令,比如curl。
发布于 2018-04-08 19:20:28
I2P附带一个Dockerfile。使用它的最快方法是运行:
docker run -it --entrypoint /bin/sh meeh/i2p.i2p然后在容器内运行:
/entrypoint.sh &
export http_proxy=http://localhost:4444/
export https_proxy=http://localhost:4445/要测试配置,请运行:
wget -O- http://example.com/
wget -qO- ifconfig.me
wget -qO- ifconfig.co/json要在Docker中运行I2P节点,只需运行:
docker run meeh/i2p.i2p然后需要通过暴露端口 (例如,从浏览器或另一个容器)访问它。
https://softwarerecs.stackexchange.com/questions/49571
复制相似问题