2

如果我在 docker 中运行 sitespeed 并获得以下输出:

Google Chrome 63.0.3239.84
Mozilla Firefox 54.0.1
[2017-12-27 18:10:01] INFO: Versions OS: linux 4.9.49-moby nodejs: v8.9.1 sitespeed.io: 6.2.2 browsertime: 2.1.2 coach: 1.1.1
[2017-12-27 18:10:02] INFO: Starting chrome for analysing https://www.google.com/ 3 time(s)
[2017-12-27 18:10:02] INFO: Testing url https://www.google.com/ run 1
[2017-12-27 18:10:18] INFO: Testing url https://www.google.com/ run 2
[2017-12-27 18:10:29] INFO: Testing url https://www.google.com/ run 3
[2017-12-27 18:10:40] INFO: 18 requests, 584.40 kb, backEndTime: 158ms (±6.42ms), firstPaint: 321ms (±3.32ms), firstVisualChange: 389ms (±7.78ms), DOMContentLoaded: 376ms (±3.63ms), Load: 529ms (±91.22ms), speedIndex: 477 (±9.23), visualComplete85: 422ms (±7.90ms), lastVisualChange: 2.65s (±137.82ms), rumSpeedIndex: 321 (±3.32) (3 runs)
[2017-12-27 18:10:43] INFO: HTML stored in /sitespeed.io/reports
[2017-12-27 18:10:43] INFO: Finished analysing https://www.google.com/

HTML 日志存储在哪里?'/sitespeed.io/reports',我不知道去哪里访问它。

4

1 回答 1

2

来自Docker 中心页面的示例说:

docker run --shm-size=1g --rm -v "$(pwd)":/sitespeed.io sitespeedio/sitespeed.io http://www.sitespeed.io/ -b chrome
  • --rm命令的一部分意味着容器在完成后被移除。因此,您将无法进入容器“内部”并访问结果,但是......
  • -v "$(pwd)":/sitespeed.io部分意味着

    • -v: 一个volume被创建
    • "$(pwd)": 在你的工作目录
    • 指向/sitespeed.io容器的文件夹

实际上,这意味着如果您在名为 的目录中运行上述命令/my-docker-tests(尽管容器已被删除),您将能够在主机的文件系统上看到结果文件/my-docker-tests/sitespeed-result/

在此处输入图像描述

于 2018-09-18T09:44:34.420 回答