专属域名
文档搜索
轩辕助手
Run助手
邀请有礼
返回顶部
快速返回页面顶部
收起
收起工具栏
轩辕镜像 官方专业版
轩辕镜像
专业版
轩辕镜像 官方专业版
轩辕镜像
专业版
首页个人中心搜索镜像

交易
充值流量我的订单
工具
提交工单镜像收录一键安装
Npm 源Pip 源Homebrew 源
帮助
常见问题轩辕镜像免费版
其他
关于我们网站地图
热门搜索:
alpine-chrome

zenika/alpine-chrome

自动构建
zenika

在极小的Alpine镜像中以无头模式运行的Chrome浏览器,适用于网页测试、自动化和内容生成等场景,体积小巧且功能丰富。

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

如果你用 DeepSeek、元宝AI、Copilot 等 AI 代为编写轩辕镜像的 docker pull、修改 compose 镜像地址,或排查拉取失败等问题,请让 AI 先读规则再动手,只要在 AI 对话里直接发送下面这句话即可:

生成 docker pull、修改 compose 的 image,或排查拉取失败前,请先阅读并严格遵守 https://xuanyuan.cloud/agents.md 中的规则。

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

轩辕镜像,让镜像更快,让人生更轻。点击查看
DockerHub 官方简介
轩辕镜像中文简介
标签下载
镜像标签列表与下载命令
轩辕镜像,让镜像更快,让人生更轻。点击查看

Available registries

Following the changes with the Rate Limiting on Docker Hub. Tweet here for more information in 🇫🇷

  • On the https://hub.docker.com/r/zenika/alpine-chrome without any prefix: zenika/alpine-chrome
  • On Google Cloud - available in the closest region:
    • Global: gcr.io/zenika-hub/alpine-chrome
    • Europe: eu.gcr.io/zenika-hub/alpine-chrome
    • Asia: asia.gcr.io/zenika-hub/alpine-chrome
    • US: us.gcr.io/zenika-hub/alpine-chrome

Supported tags and respective Dockerfile links

  • latest, 100 https://github.com/Zenika/alpine-chrome/blob/master/Dockerfile
  • with-node, 100-with-node, 100-with-node-16 https://github.com/Zenika/alpine-chrome/blob/master/with-node/Dockerfile
  • with-puppeteer, 100-with-puppeteer https://github.com/Zenika/alpine-chrome/blob/master/with-puppeteer/Dockerfile
  • with-playwright, 100-with-playwright https://github.com/Zenika/alpine-chrome/blob/master/with-playwright/Dockerfile
  • with-selenoid, 100-with-selenoid https://github.com/Zenika/alpine-chrome/blob/master/with-selenoid/Dockerfile
  • with-chromedriver, 100-with-chromedriver https://github.com/Zenika/alpine-chrome/blob/master/with-chromedriver/Dockerfile
  • 89, 86, 85, 84, 83, 81, 80, 77, 76, 73, 72, 71, 68, 64
  • 89-with-node, 86-with-node, 85-with-node, 84-with-node, 83-with-node, 81-with-node, 80-with-node, 77-with-node, 76-with-node
  • 89-with-puppeteer, 86-with-puppeteer, 85-with-puppeteer,84-with-puppeteer, 83-with-puppeteer, 81-with-puppeteer, 80-with-puppeteer, 77-with-puppeteer, 76-with-puppeteer

alpine-chrome

Chrome running in headless mode in a tiny Alpine image


🤔 Why use a Headless Chrome

In the world of webdev, the ability to run quickly end-to-end tests are important. Popular technologies like Puppeteer enable developers to make fun things like testing, automating forms, crawling, generating screenshots, capturing timeline... And there is a secret: some of these features are directly available on Chrome! 🙌

💡 Crafting the perfect container

  • 📦 Tiniest Headless Chrome (Compressed size: https://github.com/Zenika/alpine-chrome#image-disk-size)
  • 🐳 Easy to use, ephemeral and reproducible Headless Chrome with Docker
  • 📝 Doc-friendly with examples for printing the DOM, generating an image with a mobile ratio or generating a PDF.
  • 👷‍♂️ Autobuild with the https://hub.docker.com/repository/docker/zenika/alpine-chrome to sync the project and ship the images with confidence
  • 📌 Up-to-date latest Chromium and tags available to test different versions of Chromium
  • 🔐 Secure with the best way to use Chrome and Docker - https://github.com/Zenika/alpine-chrome#3-ways-to-securely-use-chrome-headless-with-this-image section
  • 🌐 Ready for internationalisation use: support for asian characters - https://github.com/Zenika/alpine-chrome/blob/master/with-puppeteer/src/screenshot-asia.js
  • 💄 Ready for design use: support for WebGL, support for emojis- See https://github.com/Zenika/alpine-chrome#how-to-use-with-webgl and https://github.com/Zenika/alpine-chrome/issues/114
  • 📄 Open Source with an Apache2 licence
  • 👥 Community-built with external contributors - https://github.com/Zenika/alpine-chrome#-contributors
  • 💚 Dev-friendly with examples using NodeJS, Puppeteer, docker-compose and also a test with a X11 display - https://github.com/Zenika/alpine-chrome#run-examples

3 ways to securely use Chrome Headless with this image

❌ With nothing

Launching the container using only docker container run -it zenika/alpine-chrome ... will fail with some logs similar to https://github.com/Zenika/alpine-chrome/issues/33.

Please use the 3 others ways to use Chrome Headless.

✅ With --no-sandbox

Launch the container using:

docker container run -it --rm zenika/alpine-chrome and use the --no-sandbox flag for all your commands.

Be careful to know the website you're calling.

Explanation for the no-sandbox flag in a quick introduction here and for More in depth design document here

✅ With SYS_ADMIN capability

Launch the container using: docker container run -it --rm --cap-add=SYS_ADMIN zenika/alpine-chrome

This allows to run Chrome with sandboxing but needs unnecessary privileges from a Docker point of view.

✅ The best: With seccomp

Thanks to ever-awesome Jessie Frazelle seccomp profile for Chrome. This is The most secure way to run this Headless Chrome docker image.

https://github.com/Zenika/alpine-chrome/blob/master/chrome.json

Also available here wget https://raw.githubusercontent.com/jfrazelle/dotfiles/master/etc/docker/seccomp/chrome.json

Launch the container using: docker container run -it --rm --security-opt seccomp=$(pwd)/chrome.json zenika/alpine-chrome

How to use in command line

Default entrypoint

The default entrypoint does the following command: chromium-browser --headless --disable-gpu --disable-software-rasterizer --disable-dev-shm-usage

You can get full control by overriding the entrypoint using: docker container run -it --rm --entrypoint "" zenika/alpine-chrome chromium-browser ...

Use the devtools

Command (with no-sandbox): docker container run -d -p 9222:9222 zenika/alpine-chrome --no-sandbox --remote-debugging-address=0.0.0.0 --remote-debugging-port=9222 https://www.chromestatus.com/

Open your browser to: http://localhost:9222 and then click on the tab you want to inspect. Replace the beginning https://chrome-devtools-frontend.appspot.com/serve_file/@.../inspector.html?ws=localhost:9222/[END] by chrome-devtools://devtools/bundled/inspector.html?ws=localhost:9222/[END]

Print the DOM

Command (with no-sandbox): docker container run -it --rm zenika/alpine-chrome --no-sandbox --dump-dom https://www.chromestatus.com/

Print a PDF

Command (with no-sandbox): docker container run -it --rm -v $(pwd):/usr/src/app zenika/alpine-chrome --no-sandbox --print-to-pdf --hide-scrollbars https://www.chromestatus.com/

Take a screenshot

Command (with no-sandbox): docker container run -it --rm -v $(pwd):/usr/src/app zenika/alpine-chrome --no-sandbox --screenshot --hide-scrollbars https://www.chromestatus.com/

Size of a standard letterhead.

Command (with no-sandbox): docker container run -it --rm -v $(pwd):/usr/src/app zenika/alpine-chrome --no-sandbox --screenshot --hide-scrollbars --window-size=1280,1696 https://www.chromestatus.com/

Nexus 5x

Command (with no-sandbox): docker container run -it --rm -v $(pwd):/usr/src/app zenika/alpine-chrome --no-sandbox --screenshot --hide-scrollbars --window-size=412,732 https://www.chromestatus.com/

Screenshot owned by current user (by default the file is owned by the container user)

Command (with no-sandbox): docker container run -u `id -u $USER` -it --rm -v $(pwd):/usr/src/app zenika/alpine-chrome --no-sandbox --screenshot --hide-scrollbars --window-size=412,732 [***]

How to use with Deno

Go the deno src folder. Build your image using this command:

docker image build -t zenika/alpine-chrome:with-deno-sample .

Then launch the container:

docker container run -it --rm zenika/alpine-chrome:with-deno-sample
 Download https://deno.land/std/examples/welcome.ts
 Warning Implicitly using master branch https://deno.land/std/examples/welcome.ts
 Compile https://deno.land/std/examples/welcome.ts
 Welcome to Deno 🦕

With your own file, use this command:

docker container run -it --rm -v $(pwd):/usr/src/app zenika/alpine-chrome:with-deno-sample run helloworld.ts
Compile file:///usr/src/app/helloworld.ts
Download https://deno.land/std/fmt/colors.ts
Warning Implicitly using master branch https://deno.land/std/fmt/colors.ts
Hello world!

How to use with Puppeteer

With tool like "Puppeteer", we can add a lot things with our Chrome Headless.

With some code in NodeJS, we can improve and make some tests.

See the https://github.com/Zenika/alpine-chrome/blob/master/with-puppeteer folder for more details. We have to https://github.com/puppeteer/puppeteer/blob/main/versions.js.

If you have a NodeJS/Puppeteer script in your src folder named pdf.js, you can launch it using the following command:

docker container run -it --rm -v $(pwd)/src:/usr/src/app/src --cap-add=SYS_ADMIN zenika/alpine-chrome:with-puppeteer node src/pdf.js

With the "wqy-zenhei" library, you could also manipulate asian pages like in https://github.com/Zenika/alpine-chrome/blob/master/with-puppeteer/src/screenshot-asia.js

docker container run -it --rm -v $(pwd)/src:/usr/src/app/src --cap-add=SYS_ADMIN zenika/alpine-chrome:with-puppeteer node src/screenshot-asia.js

These websites are tested with the following supported languages:

  • Chinese (with https://m.baidu.com)
  • Japanese (with https://www.yahoo.co.jp/)
  • Korean (with https://www.naver.com/)

How to use with Puppeteer to test a Chrome Extension

https://github.com/puppeteer/puppeteer/blob/main/docs/api.md#working-with-chrome-extensions you can not test a Chrome Extension in headleass mode. You need a display available, that's where Xvfb comes in.

See the https://github.com/Zenika/alpine-chrome/blob/master/with-puppeteer-xvfb folder for more details. We have to https://github.com/puppeteer/puppeteer/blob/main/versions.js.

Assuming you have a NodeJS/Puppeteer script in your src folder named extension.js, and the unpacked extension in the chrome-extension folder, you can launch it using the following command:

docker container run -it --rm -v $(pwd)/src:/usr/src/app/src --cap-add=SYS_ADMIN zenika/alpine-chrome:with-puppeteer-xvfb node src/extension.js

The extension provided will change the page background in red for every website visited. This demo will load the extension and take a screenshot of the icanhazip.com website.

How to use with Playwright

Like "Puppeteer", we can do a lot things using "Playwright" with our Chrome Headless.

Go to the with-playwright folder and launch the following command:

docker container run -it --rm -v $(pwd)/src:/usr/src/app/src --cap-add=SYS_ADMIN zenika/alpine-chrome:with-playwright node src/useragent.js

A example-chromium.png file will be created in your with-playwright/src folder.

How to use with WebGL

By default, this image works with WebGL.

If you want to disable it, make sure to add --disable-gpu when launching Chromium.

The with-webgl tag still exists but is deprecated. It will be removed before end of August 2020.

docker container run -it --rm --cap-add=SYS_ADMIN -v $(pwd):/usr/src/app zenika/alpine-chrome --screenshot --hide-scrollbars https://webglfundamentals.org/webgl/webgl-fundamentals.html

docker container run -it --rm --cap-add=SYS_ADMIN -v $(pwd):/usr/src/app zenika/alpine-chrome --screenshot --hide-scrollbars https://browserleaks.com/webgl

Links:

  • https://github.com/adieuadieu/serverless-chrome/issues/108
  • https://github.com/DevExpress/testcafe/issues/2116
  • 'use-gl' values here

How to use with Chromedriver

ChromeDriver is a separate executable that Selenium WebDriver uses to control Chrome. You can use this image as a base for your Docker based selenium tests. See Guide for running Selenium tests using Chromedriver.

How to use with Selenoid

https://github.com/aerokube/selenoid is a powerful implementation of Selenium hub using Docker containers to launch browsers. Even if it used to run browsers in docker containers, it can be quite useful as lightweight Selenium replacement. with-selenoid image is a self sufficient selenium server, chrome and chromedriver installed.

You can run it with following command:

docker container run -it --rm --cap-add=SYS_ADMIN  -p 4444:4444 zenika/alpine-chrome:with-selenoid -capture-driver-logs

And run your tests against http://localhost:4444/wd/hub

One of the use-cases might be running automation tests in the environment with restricted Docker environment like on some CI systems like GitLab CI, etc. In such case you may not have permissions for --cap-add=SYS_ADMIN and you will need to pass the --no-sandbox to chromedriver.

See more selenoid docs

Run as root and override default entrypoint

We can run the container as root with this command:

docker container run --rm -it --entrypoint "" --user root zenika/alpine-chrome sh

Run examples

Some examples are available on the examples directory:

  • 🐳 https://github.com/Zenika/alpine-chrome/blob/master/examples/docker-compose to launch a chrome calling a nginx server in the same docker-compose
  • ☸️ https://github.com/Zenika/alpine-chrome/tree/master/examples/k8s to launch a pod with a headless chrome
  • 🖥 https://github.com/Zenika/alpine-chrome/blob/master/examples/x11 to experiment this image with a X11 server.

References

  • Headless Chrome website: [***]

  • List of all options of the "Chromium" command line: [***]

  • Where to file issues: https://github.com/Zenika/alpine-chrome/issues

  • Maintained by: [***]

Versions (in latest)

Alpine version

docker container run -it --rm --entrypoint "" zenika/alpine-chrome cat /etc/alpine-release
3.15.4

Chrome version

docker container run -it --rm --entrypoint "" zenika/alpine-chrome chromium-browser --version
Chromium 100.0.4896.60

Image disk size

docker image inspect zenika/alpine-chrome --format='{{.Size}}'
357467827 # 341 MB

✨ Contributors

Thanks goes to these wonderful people (emoji key):


Julien Landuré
https://github.com/Zenika/alpine-chrome/commits?author=jlandure https://github.com/Zenika/alpine-chrome/pulls?q=is%3Apr+reviewed-by%3Ajlandure https://github.com/Zenika/alpine-chrome/commits?author=jlandure 🤔 💬 🚧
https://github.com/lygstate
https://github.com/Zenika/alpine-chrome/commits?author=lygstate 🤔 💬

Dennis Koch
https://github.com/Zenika/alpine-chrome/commits?author=pxlrbt 🤔 💬
https://github.com/sargonpiraev
https://github.com/Zenika/alpine-chrome/commits?author=sargonpiraev
https://github.com/ebriand
https://github.com/Zenika/alpine-chrome/commits?author=ebriand
https://github.com/huhai463127310
https://github.com/Zenika/alpine-chrome/commits?author=huhai463127310 🤔

Roman Pushkin
https://github.com/Zenika/alpine-chrome/commits?author=ro31337

Juan Lladó
https://github.com/Zenika/alpine-chrome/commits?author=jllado
https://github.com/c24w
https://github.com/Zenika/alpine-chrome/issues?q=author%3Ac24w

Wang Guan
https://github.com/Zenika/alpine-chrome/issues?q=author%3Ajokester
https://github.com/OscarSotoSanchez
https://github.com/Zenika/alpine-chrome/issues?q=author%3AOscarSotoSanchez

Calinoiu Alexandru Nicolae
https://github.com/Zenika/alpine-chrome/issues?q=author%3Aalexandru-calinoiu
https://github.com/mamacdon
https://github.com/Zenika/alpine-chrome/issues?q=author%3Amamacdon

Felix Mann
https://github.com/Zenika/alpine-chrome/issues?q=author%3ADJFliX
https://github.com/horacimacias
https://github.com/Zenika/alpine-chrome/issues?q=author%3Ahoracimacias

Emil Kjer
https://github.com/Zenika/alpine-chrome/issues?q=author%3Aemilkjer
https://github.com/likwid
https://github.com/Zenika/alpine-chrome/issues?q=author%3Alikwid

George Gaál
https://github.com/Zenika/alpine-chrome/issues?q=author%3Agecube
https://github.com/wheestermans31
https://github.com/Zenika/alpine-chrome/issues?q=author%3Awheestermans31
https://github.com/hodossy
https://github.com/Zenika/alpine-chrome/issues?q=author%3Ahodossy
https://github.com/ardeois
https://github.com/Zenika/alpine-chrome/issues?q=author%3Aardeois

Danny Althoff
💬
https://github.com/chadlwilson
💬 🤔
https://github.com/fenchu
https://github.com/Zenika/alpine-chrome/issues?q=author%3Afenchu
https://github.com/nrawat***
https://github.com/Zenika/alpine-chrome/issues?q=author%3Anrawat***

x0rzkov
https://github.com/Zenika/alpine-chrome/issues?q=author%3Ax0rzkov 🤔
https://github.com/jketterl

更多相关 Docker 镜像与资源

以下是 zenika/alpine-chrome 相关的常用 Docker 镜像,适用于 不同场景 等不同场景:

  • linuxserver/chrome Docker 镜像说明(Chrome 浏览器,LinuxServer 容器化版本)
  • kasmweb/chromium Docker 镜像说明(Chromium 浏览器,KasmWeb 容器化版本)
  • linuxserver/chromium Docker 镜像说明(Chromium 浏览器,LinuxServer 维护版本,适合容器化环境)
  • playwright/chromium Docker 镜像说明(Playwright 官方 Chromium 浏览器镜像,适合端到端测试与网页自动化)

镜像拉取方式

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

轩辕镜像加速拉取命令点我查看更多 alpine-chrome 镜像标签

docker pull docker.xuanyuan.run/zenika/alpine-chrome:<标签>

使用方法:

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

DockerHub 原生拉取命令

docker pull zenika/alpine-chrome:<标签>

更多 alpine-chrome 镜像推荐

vanrijn/alpine-chrome logo

vanrijn/alpine-chrome

vanrijn
Chrome running in headless mode in a tiny Alpine image
5万+ 次下载
3 年前更新
schlez/alpine-chrome logo

schlez/alpine-chrome

schlez
built from https://github.com/Zenika/alpine-chrome
5万+ 次下载
4 年前更新
codeanker/alpine-chrome logo

codeanker/alpine-chrome

codeanker
暂无描述
1万+ 次下载
4 年前更新

查看更多 alpine-chrome 相关镜像

轩辕镜像配置手册

探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式

Docker 配置

登录仓库拉取

通过 Docker 登录认证访问私有仓库

用 AI 使用轩辕镜像

发给 Cursor、ChatGPT、豆包等 AI 的说明文档

专属域名拉取

无需登录使用专属域名

K8s Containerd

Kubernetes 集群配置 Containerd

K3s

K3s 轻量级 Kubernetes 镜像加速

Dev Containers

VS Code Dev Containers 配置

Podman

Podman 容器引擎配置

Singularity/Apptainer

HPC 科学计算容器配置

其他仓库配置

ghcr、Quay、nvcr 等镜像仓库

Harbor 镜像源配置

Harbor Proxy Repository 对接专属域名

Portainer 镜像源配置

Portainer Registries 加速拉取

Nexus 镜像源配置

Nexus3 Docker Proxy 内网缓存

系统配置

Linux

在 Linux 系统配置镜像服务

Windows/Mac

在 Docker Desktop 配置镜像

MacOS OrbStack

MacOS OrbStack 容器配置

Docker Compose

Docker Compose 项目配置

NAS 设备

群晖

Synology 群晖 NAS 配置

飞牛

飞牛 fnOS 系统配置镜像

绿联

绿联 NAS 系统配置镜像

威联通

QNAP 威联通 NAS 配置

极空间

极空间 NAS 系统配置服务

网络设备

爱快路由

爱快 iKuai 路由系统配置

宝塔面板

在宝塔面板一键配置镜像

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

镜像拉取常见问题

使用与功能问题

配置了专属域名后,docker search 为什么会报错?

docker search 限制

Docker Hub 上有的镜像,为什么在轩辕镜像网站搜不到?

站内搜不到镜像

机器不能直连外网时,怎么用 docker save / load 迁镜像?

离线 save/load

docker pull 拉插件报错(plugin v1+json)怎么办?

插件要用 plugin install

WSL 里 Docker 拉镜像特别慢,怎么排查和优化?

WSL 拉取慢

轩辕镜像安全吗?如何用 digest 校验镜像没被篡改?

安全与 digest

第一次用轩辕镜像拉 Docker 镜像,要怎么登录和配置?

新手拉取配置

轩辕镜像合规吗?轩辕镜像的合规是怎么做的?

镜像合规机制

轩辕镜像支持 docker push 上传本地镜像吗?

不支持 push

错误码与失败问题

docker pull 提示 manifest unknown 怎么办?

manifest unknown

docker pull 提示 no matching manifest 怎么办?

no matching manifest(架构)

镜像已拉取完成,却提示 invalid tar header 或 failed to register layer 怎么办?

invalid tar header(解压)

Docker pull 时 HTTPS / TLS 证书验证失败怎么办?

TLS 证书失败

Docker pull 时 DNS 解析超时或连不上仓库怎么办?

DNS 超时

docker 无法连接轩辕镜像域名怎么办?

域名连通性排查

Docker 拉取出现 410 Gone 怎么办?

410 Gone 排查

出现 402 或「流量用尽」提示怎么办?

402 与流量用尽

Docker 拉取提示 UNAUTHORIZED(401)怎么办?

401 认证失败

遇到 429 Too Many Requests(请求太频繁)怎么办?

429 限流

docker login 提示 Cannot autolaunch D-Bus,还算登录成功吗?

D-Bus 凭证提示

为什么会出现「单层超过 20GB」或 413,无法加速拉取?

413 与超大单层

账号 / 计费 / 权限

轩辕镜像免费版和专业版有什么区别?

免费版与专业版区别

轩辕镜像支持哪些 Docker 镜像仓库?

支持的镜像仓库

镜像拉取失败还会不会扣流量?

失败是否计费

麒麟 V10 / 统信 UOS 提示 KYSEC 权限不够怎么办?

KYSEC 拦截脚本

如何在轩辕镜像申请开具发票?

申请开票

怎么修改轩辕镜像的网站登录和仓库登录密码?

修改登录密码

如何注销轩辕镜像账户?要注意什么?

注销账户

配置与原理类

写了 registry-mirrors,为什么还是走官方或仍然报错?

mirrors 不生效

怎么用 docker tag 去掉镜像名里的轩辕域名前缀?

去掉域名前缀

如何拉取指定 CPU 架构的镜像(如 ARM64、AMD64)?

指定架构拉取

用轩辕镜像拉镜像时快时慢,常见原因有哪些?

拉取速度原因

为什么拉取镜像的 :latest 标签,拿到的往往不是「最新」镜像?

latest 与「最新」

查看全部问题→

用户好评

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

用户头像

oldzhang

运维工程师

Linux服务器

5

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

轩辕镜像
镜像详情
...
zenika/alpine-chrome
博客Docker 镜像公告与技术博客
热门查看热门 Docker 镜像推荐
安装一键安装 Docker 并配置镜像源
镜像拉取问题咨询请 提交工单。官方公众号:源码跳动。官方技术交流群:51517718。轩辕镜像所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
镜像拉取问题咨询请提交工单。官方公众号:源码跳动。官方技术交流群:。轩辕镜像所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
商务合作:点击复制邮箱
©2024-2026 源码跳动
商务合作:点击复制邮箱Copyright © 2024-2026 杭州源码跳动科技有限公司. All rights reserved.