轩辕镜像 官方专业版
轩辕镜像
专业版
轩辕镜像 官方专业版
轩辕镜像
专业版
首页个人中心搜索镜像
交易
充值流量¥8起我的订单
文档
工具
提交工单页面收录
sitespeed.io-autobuild

sitespeedio/sitespeed.io-autobuild

sitespeedio
自动构建

sitespeed.io是一款完整的Web性能工具,通过真实浏览器测试网站,收集用户中心指标,提供优化建议,支持持续集成和生产环境监控。

6 次收藏下载次数: 0状态:自动构建维护者:sitespeedio仓库类型:镜像最近更新:12 天前
让 AI 帮你使用轩辕镜像? · 展开查看说明 · 点击收起说明

如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。

只需在 AI 对话中先发送下面这句话即可:

请先完整阅读并严格遵守以下文档中的全部规则与要求:

https://xuanyuan.cloud/agents.md

在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。

查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。

DockerHub 官方简介
轩辕镜像中文简介
下载命令
镜像标签列表与下载命令
使用轩辕镜像,把时间还给真正重要的事。
点击查看

sitespeed.io

https://npmjs.org/package/sitespeed.io https://hub.docker.com/r/sitespeedio/sitespeed.io/ https://github.com/sitespeedio/sitespeed.io/stargazers https://npmjs.org/package/sitespeed.io

https://www.sitespeed.io/ | https://www.sitespeed.io/documentation/sitespeed.io/ | https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md | ***

Welcome to the wonderful world of web performance!

Sitespeed.io is a complete web performance tool that helps you measure the performance of your website. What exactly does that mean?

Before we start telling you all about sitespeed.io you should just try it out:

bash
$ docker run --rm -v "$(pwd)":/sitespeed.io sitespeedio/sitespeed.io https://www.sitespeed.io/

Or using npm (you need Chrome, Firefox, Edge or Safari installed or Chrome/Firefox on Android)

bash
$ npm i -g sitespeed.io && sitespeed.io https://www.sitespeed.io/

Ok, now you have tried it, let us tell you more about sitespeed.io. We think of a complete web performance tool as having three key capabilities:

  • It test web sites using real browsers, simulating real users connectivity and collect important user centric metrics like Speed Index and First Visual Render.
  • It analyse how your page is built and give feedback how you can make it faster for the end user.
  • It collect and keep data how your pages is built so you easily can track changes.

What is sitespeed.io good for?

It is usually used in two different areas:

  • Running in your continuous integration to find web performance regressions early: on commits or when you move code to your test environment
  • Monitoring your performance in production, alerting on regressions.

To understand how sitespeed.io does these things, let's talk about how it works.

First a few key concepts:

  • Sitespeed.io is built upon a couple of other Open Source tools in the sitespeed.io suite.
  • https://github.com/sitespeedio/browsertime is the tool that drives the browser and collect metrics.
  • https://github.com/sitespeedio/coach knows how to build fast websites and analyse your page and give you feedback what you should change.
  • Visual Metrics is metrics collected from a video recording of the browser screen.
  • Everything in sitespeed.io is a https://www.sitespeed.io/documentation/sitespeed.io/plugins/ and they communicate by passing messages on a queue.

When you as user choose to test a URL, this is what happens on a high level:

  1. sitespeed.io starts and initialise all configured plugins.
  2. The URL is passed around the plugins through the queue.
    1. Browsertime gets the URL and opens the browser.
    2. It starts to record a video of the browser screen.
    3. The browser access the URL.
    4. When the page is finished, Browsertime takes a screenshot of the page.
    5. Then run some JavaScripts to analyse the page (using Coach and Browsertime scripts).
    6. Stop the video and close the browser.
    7. Analyse the video to get Visual Metrics like First Visual Change and Speed Index.
    8. Browsertime passes all metrics and data on the queue so other plugins can use it.
  3. The HTML/Graphite/InfluxDB plugin collects the metrics in queue.
  4. When all URLs are tested, sitespeed sends a message telling plugins to summarise the metrics and then render it.
  5. Plugins pickup the render message and the HTML plugin writes the HTML to disk.

Try it out

Using Docker (use latest Docker):

bash
$ docker run --rm -v "$(pwd)":/sitespeed.io sitespeedio/sitespeed.io https://www.sitespeed.io/

Or install using npm:

bash
$ npm i -g sitespeed.io

Or clone the repo and test the latest changes:

bash
$ git clone https://github.com/sitespeedio/sitespeed.io.git
$ cd sitespeed.io
$ npm install
$ bin/sitespeed.js --help
$ bin/sitespeed.js https://www.sitespeed.io/

More details

Using sitespeed.io you can:

  • Test your web site against Web Performance best practices using the https://github.com/sitespeedio/coach.
  • Collect Navigation Timing API, User Timing API and Visual Metrics from Firefox/Chrome using https://github.com/sitespeedio/browsertime.
  • Run your custom-made JavaScript and collect whichever metric(s) you need.
  • Test one or multiple pages, across one or many runs to get more-accurate metrics.
  • Create HTML-result pages or store the metrics in Graphite.
  • Write your own plugins that can do whatever tests you want/need.

See all the latest changes in the https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md.

Checkout our example https://dashboard.sitespeed.io/dashboard/db/page-summary

A summary report in HTML:

Individual page report:

Collected metrics from a URL in Graphite/Grafana:

And look at trends in Grafana:

Video - easiest using Docker. This gif is optimized, the quality is much better IRL:

Test using WebPageReplay

We have a special Docker container that comes with https://github.com/catapult-project/catapult/blob/main/web_page_replay_go/README.md installed. This is a really early alpha release but we think you should try it out.

WebPageReplay will let you replay your page locally (getting rid of server latency etc) and makes it easier to have stable metrics and find front end regressions.

It works like this:

  1. WebPageReplay is started in record mode
  2. Browsertime access the URLs you choose one time (so it is recorded)
  3. WebPageReplay is closed down
  4. WebPageReplay in replay mode is started
  5. Sitespeed.io (using Browsertime) test the URL so many times you choose
  6. WebPageReplay in replay mode is closed down

You can change latency by setting a Docker environment variable. Use REPLAY to turn on the replay functionality.

Default browser is Chrome:

docker run --cap-add=NET_ADMIN --rm -v "$(pwd)":/sitespeed.io -e REPLAY=true -e LATENCY=100 sitespeedio/sitespeed.io -n 5 -b chrome https://en.wikipedia.org/wiki/Barack_Obama

Use Firefox:

docker run --cap-add=NET_ADMIN --rm -v "$(pwd)":/sitespeed.io -e REPLAY=true -e LATENCY=100 sitespeedio/sitespeed.io -n 11 -b firefox https://en.wikipedia.org/wiki/Barack_Obama

***

We have a Mac Mini sponsored by MacStadium and you too can sponsor us to help us keep sitespeed.io running and making sure we can have the best test setup as possible. Read our https://github.com/***/soulgalore for more info.

镜像拉取方式

您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。

轩辕镜像加速拉取命令点我查看更多 sitespeed.io-autobuild 镜像标签

docker pull docker.xuanyuan.run/sitespeedio/sitespeed.io-autobuild:<标签>

使用方法:

  • 登录认证方式
  • 免认证方式

DockerHub 原生拉取命令

docker pull sitespeedio/sitespeed.io-autobuild:<标签>

轩辕镜像配置手册

按平台快速找到配置文档

一键安装

一键安装 Docker

Linux Docker 一键安装

AI

用 AI 使用轩辕镜像

agents.md · AI 对话 · 提示词

Docker

登录仓库拉取

登录认证 · 私有仓库

专属域名拉取

免登录 · 高速拉取

Linux

Docker 镜像配置

Windows / Mac

Docker Desktop 配置

MacOS OrbStack

OrbStack 容器

Apple Container

macOS 原生容器

Docker Compose

Compose 项目配置

NAS

群晖

Synology 配置

飞牛

fnOS 镜像配置

绿联

绿联 NAS

威联通

QNAP 配置

极空间

极空间 NAS

Unraid

Unraid NAS

企业仓库

其他仓库

ghcr · Quay · nvcr

Harbor 镜像源

Proxy Repository 对接

Portainer 镜像源

Registries 配置

Nexus 镜像源

Docker Proxy 缓存

开发工具

Dev Containers

VS Code 开发容器

Podman

Podman 配置指南

Singularity / Apptainer

HPC 科学计算容器

Kubernetes

K8s Containerd

Kubernetes · Containerd

K3s

轻量级集群

面板 / 网络

爱快路由

爱快 4.0 · iKuai 镜像加速

宝塔面板

一键配置镜像源

需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单

镜像拉取常见问题

功能

版本功能对比

功能对比 · 版本选择

支持的镜像仓库

Docker Hub · GCR · GHCR

专属域名用法

专属域名 · 开启停用 · 多仓库

新手拉取配置

登录 · 专属域名 · 配置

docker search 限制

专属域名 · Hub 搜索

不支持 push

仅支持 pull · 不支持

拉取速度原因

带宽 · 缓存 · 冷热镜像

错误码

402 与流量用尽

402 · 流量包 · 充值

401 认证失败

401 · docker login

manifest unknown

标签错误 · 镜像不存在

410 Gone 排查

410 · Docker 升级

429 限流

免费版 · 专业版 · 企业版 · 请求频率

其他报错

DNS 超时

DNS 解析 · 网络超时

TLS 证书失败

no matching manifest(架构)

docker.sock / daemon

账号

失败是否计费

manifest · blob · 计费

申请开票(企业 / 个人)

开票 · 发票 · 工单

修改登录密码

网站 · 仓库 · 重置

注销账户

工单 · 数据 · 注销

原理

mirrors 不生效

daemon.json · 重启

去掉域名前缀

docker tag · 重命名

指定架构拉取

ARM64 · AMD64 · 多架构

latest 与「最新」

digest · 版本号 · 标签

查看全部问题→

用户好评

来自真实用户的反馈,见证轩辕镜像的优质服务

用户头像

oldzhang

运维工程师

Linux服务器

5

"Docker访问体验非常流畅,大镜像也能快速完成下载。"

轩辕镜像
镜像详情
...
sitespeedio/sitespeed.io-autobuild
定价查看流量套餐与价格
博客Docker 镜像公告与技术博客
专业版 · 高速稳定拉取镜像
高速镜像下载·在线技术支持·99.95% SLA 保障·付费会员免广告
50GB 仅 ¥8/年
专业版 · 高速稳定拉取镜像
50GB 仅 ¥8/年
高速镜像下载·在线技术支持·99.95% SLA 保障·付费会员免广告
用户协议·隐私政策·增值电信业务经营许可证:浙B2-20261007·©2024-2026 源码跳动©2024-2026 杭州源码跳动科技有限公司·商务合作:点击复制邮箱

更多 sitespeed.io-autobuild 镜像推荐

rocm/tensorflow-autobuilds logo

rocm/tensorflow-autobuilds

rocm
用于构建最新TensorFlow Docker镜像的仓库
4 次收藏5万+ 次下载
11 个月前更新
sitespeedio/browsertime-autobuild logo

sitespeedio/browsertime-autobuild

sitespeedio
Browsertime Docker镜像用于自动化在浏览器中运行JavaScript以收集网页性能指标,支持Chrome、Firefox等多种浏览器,可记录屏幕视频并计算视觉指标(如Speed Index),生成HAR文件及性能数据JSON,适用于独立性能测试或集成到其他工具中。
10万+ 次下载
5 年前更新
amittarzaan/autobuild-amban logo

amittarzaan/autobuild-amban

amittarzaan
autobuild
10万+ 次下载
6 年前更新
pahud/aws-cdk-autobuild logo

pahud/aws-cdk-autobuild

pahud
每小时自动构建的AWS CDK Docker镜像,基于aws/aws-cdk master分支构建,提供latest标签和包含开发工具的buildtools标签,适用于CDK开发环境快速搭建和日常开发工作流。
1万+ 次下载
5 年前更新
gfourmis/docker-autobuild logo

gfourmis/docker-autobuild

gfourmis
基于Ubuntu 16.04和Apache 2.x的Docker容器自动构建示例镜像,用于展示Docker镜像自动构建的基本流程与配置。
1万+ 次下载
7 年前更新
jmessenger/maint-autobuild logo

jmessenger/maint-autobuild

jmessenger
这是为GitHub仓库jlm/maint构建的自动构建镜像,用于将802.1维护数据库从Excel工作簿转换为Web应用,解决原Excel维护困难、易出错的问题,支持Web界面管理和数据导入。
1万+ 次下载
1 年前更新

查看更多 sitespeed.io-autobuild 相关镜像