作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我编写了我的第一个 Dockerfile,以便使用 tor 和 polipo 测试 Docker。
我的 Dockerfile 看起来像:
# Pull base image.
FROM ubuntu:latest
# Upgrade system
RUN apt-get update && apt-get dist-upgrade -y --no-install-recommends && apt-get autoremove -y && apt-get clean
# Install TOR
RUN apt-get install -y --no-install-recommends tor tor-geoipdb torsocks && apt-get autoremove -y && apt-get clean
# INSTALL POLIPO
RUN apt-get update && apt-get install -y polipo
# Default ORPort
EXPOSE 9001
# Default DirPort
EXPOSE 9030
# Default SOCKS5 proxy port
EXPOSE 9050
# Default ControlPort
EXPOSE 9051
# Default polipo Port
EXPOSE 8123
RUN echo 'socksParentProxy = "localhost:9050"' >> /etc/polipo/config
RUN echo 'socksProxyType = socks5' >> /etc/polipo/config
RUN echo 'diskCacheRoot = ""' >> /etc/polipo/config
RUN echo 'ORPort 9001' >> /etc/tor/torrc
RUN echo 'ExitPolicy reject *:*' >> /etc/tor/torrc
RUN mkdir scrapy
ADD scrapyTor scrapy
ADD startpolipotor.sh .
RUN chmod 775 ./startpolipotor.sh
#!/bin/bash
/etc/init.d/tor start &
/etct/init.d/polipo start &
docker run -i -t id_image /bin/bash
ps
时,一旦进入容器内, 我什么也没看见。
最佳答案
您的 Dockerfile
应该有一个定义如下的命令:
CMD ./startpolipotor.sh
/bin/bash
作为
run
命令。只有以下内容就足够了:
docker run -i -t id_image
SIGTERM
不会正确地发送到这些后台进程,因此它们只会被杀死并可能留下一些损坏的数据。
supervisord
相反,当您需要在容器中启动多个进程时。
关于ubuntu - 启动容器时启动 tor 和 polipo,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31702107/
我编写了我的第一个 Dockerfile,以便使用 tor 和 polipo 测试 Docker。 我的 Dockerfile 看起来像: # Pull base image. FROM ubuntu
我使用 brew 通过 Mac OS 终端安装 polipo。似乎安装成功,但我找不到配置文件并对其进行编辑。谁能帮我找出原因? 最佳答案 如果 polipo 不起作用: 我也想安装 polipo,但
不完全确定这里的问题是什么。 运行 Python 2.7.3 和 Scrapy 0.16.5 我创建了一个非常简单的 Scrapy 蜘蛛来测试连接到我的本地 Polipo 代理,这样我就可以通过 TO
所以基本上我正在尝试使用 python 在 Windows 上使用来自 scrapinghub 的 Crawlera 代理和 selenium chrome。 我检查了文档,他们建议像这样使用 Pol
我对网络的了解很少。我发现了一个悖论,需要有关如何解决该问题的建议。 实验 1:使用 python 脚本中的 tor/polipo http 代理的 mechanize 浏览器发出 URL 请求。实际
我是一名优秀的程序员,十分优秀!