gpt4 book ai didi

selenium - 构建你自己的 SeleniumHQ/docker-selenium docker 镜像

转载 作者:行者123 更新时间:2023-12-04 14:53:42 26 4
gpt4 key购买 nike

我不确定这是一个错误还是只是我很愚蠢,但情况就是这样。

我想基于 StandaloneChromeDebug 构建我的图像.关注 Wiki :

  • 拉 repo 。
  • 生成图像:
  • $ 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/文件夹为空。我究竟做错了什么?如何调试东西?

    最佳答案

    路径错误,使用build: /etc/docker-selenium/StandaloneChromeDebug/没有 .如果您尝试 cd 到 ./etc/docker-selenium/StandaloneChromeDebug/ ,你会得到一个错误。

    version: "3.5"
    services:
    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

    例子:
    enter image description here

    关于selenium - 构建你自己的 SeleniumHQ/docker-selenium docker 镜像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57605684/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com