作者:itsima | 来源:互联网 | 2022-10-15 15:01
我不确定这是一个错误还是只是我很愚蠢,但事实就是如此。
我想基于StandaloneChromeDebug构建映像。跟随维基:
拉回购。
生成图像:
$ make standalone_chrome_debug
构建Dockerfile以确保不会出现错误:
$ docker build --no-cache etc/docker-selenium/StandaloneChromeDebug/
将我的映像设置为docker-compose.yml,如下所示:
selenium-hub:
container_name: selenium-hub
build: ./etc/docker-selenium/StandaloneChromeDebug/
volumes:
- /dev/shm:/dev/shm
ports:
- "4444:4444"
- "5900:5900"
environment:
- HUB_HOST=selenium-hub
- HUB_PORT=4444
没事了。容器正在运行(没有错误),但Selenium不起作用,容器日志为空,/opt/
文件夹为空。我究竟做错了什么?如何调试东西?