0

我正在使用 Windows 并使用 .\prepare.bat 安装 Zalenium

然后,当我尝试启动 Zalenium 时:

docker run --rm -ti --name zalenium -p 4444:4444 
-v /var/run/docker.sock:/var/run/docker.sock 
-v /tmp/videos:/home/seluser/videos 
--privileged dosel/zalenium start

我在控制台上收到错误:正在复制仪表板的文件...

cp: cannot create regular file '/home/seluser/videos/dashboard.html': No such file or directory

除仪表板外,一切正常。我究竟做错了什么?我正在使用最新版本。谢谢

4

3 回答 3

0

我是 Zalenium 的新手,但我发现 Zalenium Github 页面上的运行命令不适用于所有系统。

试试我使用的这个命令,让我知道它是否适用

*docker run --rm -ti --name zalenium -p 4444:4444 -v /var/run/docker.sock:/var/run/docker.sock --privileged dosel/zalenium start*
于 2019-04-05T08:31:25.893 回答
0
docker run -d -ti --name zalenium -p 4445:4444 -v /var/run/docker.sock:/var/run/docker.sock -v /tmp/videos:/home/seluser/videos --restart=always --privileged dosel/zalenium start

为我工作..仪表板在 4445 端口打开

于 2021-02-19T08:34:20.397 回答
0

错误清楚地表明它正在尝试在LINUX 中查找文件,例如结构“/home/seluser/videos/”,这在 Windows 上不可用。

当您启动 zalenium 时,它会在挂载驱动器中查找dashboard.html 。没有此文件仪表板将不可见

如果是 Windows,您应该使用以下命令。

 docker run --rm -ti --name zalenium -p 4444:4444 ^
      -v /var/run/docker.sock:/var/run/docker.sock ^
      -v /c/Users/your_user_name/temp/videos:/home/seluser/videos ^
      --privileged dosel/zalenium start

Zalenium 文档

于 2019-04-23T13:00:32.167 回答