
如果你使用 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 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。
Docker container for AceStream Engine with support for multiple architectures (ARM32, ARM64, x86_64).
This project provides Docker images for the AceStream engine that work similarly to the original AceStream service, allowing P2P stream playback using the Ace protocol.
Images are available on Docker Hub both as https://hub.docker.com/r/* and https://hub.docker.com/r/jopsis/acestream, with identical tags for all architectures.**
linux/arm/v7 (ARM32)linux/arm64 (ARM64/ARMv8)linux/amd64 (x86_64)bashdocker run -d \ --name aceserve \ -p 6878:6878 \ -p 8621:8621 \ -p 62062:62062 \ jopsis/aceserve:latest
Create a docker-compose.yml file:
yamlservices: aceserve: image: jopsis/aceserve:latest container_name: aceserve ports: - "6878:6878" - "8621:8621" - "62062:62062" restart: unless-stopped
Run the container:
bashdocker-compose up -d
Once the container is running, you can access the web interface at:
http://localhost:6878
To play an AceStream stream:
http://localhost:6878/ace/getstream?id=CONTENTHASH
Where CONTENTHASH is the ID of the AceStream content you want to play.
You can specify custom DNS servers for the AceServe container via the dns: key in your docker-compose.yml. This will ensure that all internal DNS resolution performed by the daemon uses your specified servers (not Docker's internal resolver).
Example docker-compose.yml with custom DNS:
yamlservices: aceserve: image: jopsis/aceserve:latest container_name: aceserve ports: - "6878:6878" - "8621:8621" - "62062:62062" restart: unless-stopped dns: - 1.1.1.1 - 1.0.0.1
When you set the dns: option, the container will use those IP addresses for all DNS lookups made by the internal resolver. The actual servers in use are detected and logged by the application at runtime.
Log example:
2026-01-26 14:45:37|MainThread|bootstrap|Override DNS using ExtServers from comment: ['1.1.1.1', '1.0.0.1']
If dns: is not specified, it will fallback to the default nameserver(s) configured by Docker.
To check which DNS servers are currently used by the container:
shdocker logs aceserve | grep "Override DNS"
or look inside the container file /dev/shm/acestream.log.
This helps ensure all DNS resolution by the AceServe engine is under your control and you can verify it at runtime.
For both https://hub.docker.com/r/*** and https://hub.docker.com/r/jopsis/acestream:
latest: Latest stable versionvX.X.X: Specific versions (e.g., v3.1.2)The project includes Dockerfiles for each architecture in their respective folders:
aceserve-arm32/: For ARM32 devicesaceserve-arm64/: For ARM64 devicesaceserve-x86_64/: For x86_64 systemsThis project is provided as-is, without warranties.
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。
来自真实用户的反馈,见证轩辕镜像的优质服务