我们正在尝试在docker容器中运行chrome。
构建后的 docker run 命令如下:
docker run \
--rm \
-ti \
--add-host=example.my_domain.localhost:172.21.0.13 \
--env="APP_ENV=test" \
--privileged \
--volume "$volumeDir:/app" \
--cap-add SYS_ADMIN \
--net custom_network \
built_image_tag bash
172.21.0.13 是一个示例,用于指示相同网络中另一个容器的ip。
在容器中,主机文件如下所示:
127.0.0.1 localhost
::1 localhost ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
172.21.0.13 example.my_domain.localhost
172.21.0.15 7229a8eac11e
并按预期运行:
$ wget example.my_domain.localhost
Connecting to example.my_domain.localhost (example.my_domain.localhost)|172.21.0.13|:80... connected.
连接正确
但是在浏览器中运行连接:
$ google-chrome http://example.my_domain.localhost
产生 ERR_CONNECTION_REFUSED 。
浏览器能够导航到任何其他网站。
谢谢。
编辑: 请注意, wget 和打开浏览器均在容器内 内启动,因为我们使用无头的chrome进行测试。
答案 0 :(得分:0)
就我而言,我使用的是 spatie/browsershot,但我相信潜在的问题是相同的,所以我希望我的回答有用。
当以下部分就位时,我的 ERR_CONNECTION_REFUSED
错误得到解决:
这不是在 Puppeteer 容器中添加一个 hosts 文件条目,Chrome 在我的测试中似乎没有支持。
services:
my-nginx-container:
...
networks:
internal:
aliases:
# so we can access our sites directly (by their domain) from other containers.
- my-docker-site.com
--disable-web-security'
和 --enable-features=NetworkService
。
我意识到最初的问题不是询问 Browsershot,而是为此添加了 args:
$browsershot = Browsershot::url('https://my-docker-site.com')
->setOption('args', ['--disable-web-security', '--enable-features=NetworkService'])
这样做使我能够在容器内同时运行 Browsershot 和 Puppeteer,并使 Chrome 能够通过引用其域名来访问托管在其他容器内的站点。