如果你用 DeepSeek、元宝AI、Copilot 等 AI 代为编写轩辕镜像的 docker pull、修改 compose 镜像地址,或排查拉取失败等问题,请让 AI 先读规则再动手,只要在 AI 对话里直接发送下面这句话即可:
生成 docker pull、修改 compose 的 image,或排查拉取失败前,请先阅读并严格遵守 https://xuanyuan.cloud/agents.md 中的规则。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。
注意:这是https://hub.docker.com/_/spiped%E7%9A%84%60riscv64%60%E6%9E%84%E5%BB%BA%E7%9A%84%22%E6%AF%8F%E4%B8%AA%E6%9E%B6%E6%9E%84%22%E4%BB%93%E5%BA%93%E2%80%94%E2%80%94%E6%9B%B4%E5%A4%9A%E4%BF%A1%E6%81%AF%EF%BC%8C%E8%AF%B7%E5%8F%82%E8%A7%81%E5%AE%98%E6%96%B9%E9%95%9C%E5%83%8F%E6%96%87%E6%A1%A3%E4%B8%AD%E7%9A%84%22%E9%99%A4amd64%E4%B9%8B%E5%A4%96%E7%9A%84%E6%9E%B6%E6%9E%84%EF%BC%9F%22%5Bhttps://github.com/docker-library/official-images#architectures-other-than-amd64%5D%E5%92%8C%E5%AE%98%E6%96%B9%E9%95%9C%E5%83%8FFAQ%E4%B8%AD%E7%9A%84%22Git%E4%B8%AD%E7%9A%84%E9%95%9C%E5%83%8F%E6%BA%90%E5%B7%B2%E6%9B%B4%E6%94%B9%EF%BC%8C%E7%8E%B0%E5%9C%A8%E8%AF%A5%E6%80%8E%E4%B9%88%E5%8A%9E%EF%BC%9F%22%5Bhttps://github.com/docker-library/faq#an-images-source-changed-in-git-now-what%5D%E3%80%82
维护者:
https://github.com/TimWolla/docker-spiped%EF%BC%8Chttps://github.com/docker-library/official-images/pull/1714#issuecomment-219556607
获取帮助:
Docker社区Slack、Server Fault、Unix & Linux或Stack Overflow
Dockerfile链接https://github.com/TimWolla/docker-spiped/blob/f7100845a437d5e72c79d384113cd657ca6f93de/1.6/Dockerfile
https://github.com/TimWolla/docker-spiped/blob/2a6429d25e5ebccc2a8075cb8ec85d5dd951579e/1.6/alpine/Dockerfile
问题提交地址:
https://github.com/TimWolla/docker-spiped/issues?q=
支持的架构:(https://github.com/docker-library/official-images#architectures-other-than-amd64)
https://hub.docker.com/r/amd64/spiped/%E3%80%81https://hub.docker.com/r/arm32v5/spiped/%E3%80%81https://hub.docker.com/r/arm32v6/spiped/%E3%80%81https://hub.docker.com/r/arm32v7/spiped/%E3%80%81https://hub.docker.com/r/arm64v8/spiped/%E3%80%81https://hub.docker.com/r/i386/spiped/%E3%80%81https://hub.docker.com/r/ppc64le/spiped/%E3%80%81https://hub.docker.com/r/riscv64/spiped/%E3%80%81https://hub.docker.com/r/s390x/spiped/
已发布镜像制品详情:
https://github.com/docker-library/repo-info/blob/master/repos/spiped (https://github.com/docker-library/repo-info/commits/master/repos/spiped)
(镜像元数据、传输大小等)
镜像更新:
https://github.com/docker-library/official-images/issues?q=label%3Alibrary%2Fspiped
https://github.com/docker-library/official-images/blob/master/library/spiped (https://github.com/docker-library/official-images/commits/master/library/spiped)
本描述的来源:
https://github.com/docker-library/docs/tree/master/spiped (https://github.com/docker-library/docs/commits/master/spiped)
Spiped(发音为"ess-pipe-dee")是一个用于在套接字地址之间创建对称加密和认证管道的实用工具。通过它,用户可以连接到一个地址(如本地的UNIX套接字),并透明地建立到另一个地址(如另一系统上的UNIX套接字)的连接。这类似于ssh -L功能,但不使用SSH,且需要预共享对称密钥。
tarsnap.com/spiped.html
本镜像会自动从/spiped/key文件(-k)获取密钥,并以 foreground 模式(-F)运行spiped。除此之外,它接受与spiped本身相同的选项。可通过运行无参数的镜像查看可用标志:
console$ docker run -it --rm riscv64/spiped usage: spiped {-e | -d} -s <source socket> -t <target socket> -k <key file> [-DFj] [-f | -g] [-n <max # connections>] [-o <connection timeout>] [-p <pidfile>] [-r <rtime> | -R]
例如,运行spiped以在8025端口接收加密连接并转发到本地25端口:
console$ docker run -d -v /path/to/keyfile:/spiped/key:ro -p 8025:8025 --init riscv64/spiped -d -s '[0.0.0.0]:8025' -t '[127.0.0.1]:25'
通常,您会将此镜像与另一个链接的容器结合使用。以下示例将在9200端口接收加密连接,并转发到名为elasticsearch的容器的9200端口:
console$ docker run -d -v /path/to/keyfile:/spiped/key:ro -p 9200:9200 --link elasticsearch:elasticsearch --init riscv64/spiped -d -s '[0.0.0.0]:9200' -t 'elasticsearch:9200'
如果不需要绑定到特权端口,可传递--user spiped使spiped以非特权用户运行:
console$ docker run -d -v /path/to/keyfile:/spiped/key:ro --user spiped -p 9200:9200 --link elasticsearch:elasticsearch --init riscv64/spiped -d -s '[0.0.0.0]:9200' -t 'elasticsearch:9200'
通过运行以下命令,可将名为spiped-keyfile的新密钥文件保存到/path/to/keyfile/文件夹:
console$ docker run -it --rm -v /path/to/keyfile:/spiped/key riscv64/spiped spiped-generate-key.sh
之后,通过安全方式(如scp)将spiped-keyfile传输到另一主机。
riscv64/spiped镜像有多种版本,适用于不同使用场景。
riscv64/spiped:<version>这是默认镜像。如果不确定需求,建议使用此版本。它既可作为临时容器(挂载源代码并启动容器以运行应用),也可作为构建其他镜像的基础。
riscv64/spiped:<version>-alpine此镜像基于流行的Alpine Linux项目,可在https://hub.docker.com/_/alpine%E4%B8%AD%E8%8E%B7%E5%8F%96%E3%80%82Alpine Linux比大多数发行版基础镜像小得多(约5MB),因此通常会生成更精简的镜像。
当最终镜像大小是首要考虑因素时,此变体非常有用。需要注意的是,它使用musl libc而非glibc及相关库,因此软件可能会因libc需求/假设的深度而遇到问题。有关可能出现的问题及使用Alpine基础镜像的优缺点比较,请参见此Hacker News评论线程。
为最小化镜像大小,Alpine基础镜像通常不包含额外相关工具(如git或bash)。若以此镜像为基础,可在自己的Dockerfile中添加所需工具(如不熟悉如何安装软件,参见https://hub.docker.com/_/alpine/%E4%B8%AD%E7%9A%84%E7%A4%BA%E4%BE%8B%EF%BC%89%E3%80%82
查看本镜像中包含的软件的https://github.com/Tarsnap/spiped/blob/master/COPYRIGHT%E3%80%82
与所有Docker镜像一样,本镜像可能还包含其他受其他许可约束的软件(如基础发行版中的Bash等,以及主要软件的任何直接或间接依赖项)。
可在https://github.com/docker-library/repo-info/tree/master/repos/spiped%E4%B8%AD%E6%89%BE%E5%88%B0%E4%B8%80%E4%BA%9B%E8%83%BD%E5%A4%9F%E8%87%AA%E5%8A%A8%E6%A3%80%E6%B5%8B%E5%88%B0%E7%9A%84%E9%A2%9D%E5%A4%96%E8%AE%B8%E5%8F%AF%E4%BF%A1%E6%81%AF%E3%80%82
对于任何预构建镜像的使用,镜像用户有责任确保对本镜像的任何使用均符合其中包含的所有软件的相关许可。
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。
探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式
通过 Docker 登录认证访问私有仓库
发给 Cursor、ChatGPT、豆包等 AI 的说明文档
无需登录使用专属域名
Kubernetes 集群配置 Containerd
K3s 轻量级 Kubernetes 镜像加速
VS Code Dev Containers 配置
Podman 容器引擎配置
HPC 科学计算容器配置
ghcr、Quay、nvcr 等镜像仓库
Harbor Proxy Repository 对接专属域名
Portainer Registries 加速拉取
Nexus3 Docker Proxy 内网缓存
需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单
docker search 限制
站内搜不到镜像
离线 save/load
插件要用 plugin install
WSL 拉取慢
安全与 digest
新手拉取配置
镜像合规机制
不支持 push
manifest unknown
no matching manifest(架构)
invalid tar header(解压)
TLS 证书失败
DNS 超时
域名连通性排查
410 Gone 排查
402 与流量用尽
401 认证失败
429 限流
D-Bus 凭证提示
413 与超大单层
来自真实用户的反馈,见证轩辕镜像的优质服务