
如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。
只需在 AI 对话中先发送下面这段话即可:
请先阅读并遵守:https://xuanyuan.cloud/agents.md
未读文档前不要生成 pull 命令或排错方案。查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。
Note: this is the "per-architecture" repository for the s390x builds of https://hub.docker.com/_/eclipse-mosquitto -- for more information, see https://github.com/docker-library/official-images#architectures-other-than-amd64 and https://github.com/docker-library/faq#an-images-source-changed-in-git-now-what.
Maintained by:
https://github.com/eclipse/mosquitto
Where to get help:
https://dockr.ly/comm-slack, Server Fault, https://unix.stackexchange.com/help/on-topic, or https://stackoverflow.com/help/on-topic
Dockerfile linkshttps://github.com/eclipse-mosquitto/mosquitto/blob/5b74cce8a4fe2a73b57df6c703bfde2cfd535d60/docker/2.1-alpine/Dockerfile
https://github.com/eclipse-mosquitto/mosquitto/blob/5b74cce8a4fe2a73b57df6c703bfde2cfd535d60/docker/2.0-openssl/Dockerfile
https://github.com/eclipse-mosquitto/mosquitto/blob/5b74cce8a4fe2a73b57df6c703bfde2cfd535d60/docker/1.6-openssl/Dockerfile
Where to file issues:
https://github.com/eclipse/mosquitto/issues?q=is:issue+is:pr
Supported architectures: (https://github.com/docker-library/official-images#architectures-other-than-amd64)
https://hub.docker.com/r/amd64/eclipse-mosquitto/, https://hub.docker.com/r/arm32v6/eclipse-mosquitto/, https://hub.docker.com/r/arm64v8/eclipse-mosquitto/, https://hub.docker.com/r/i386/eclipse-mosquitto/, https://hub.docker.com/r/ppc64le/eclipse-mosquitto/, https://hub.docker.com/r/s390x/eclipse-mosquitto/
Published image artifact details:
https://github.com/docker-library/repo-info/blob/master/repos/eclipse-mosquitto (https://github.com/docker-library/repo-info/commits/master/repos/eclipse-mosquitto)
(image metadata, transfer size, etc)
Image updates:
https://github.com/docker-library/official-images/issues?q=label%3Alibrary%2Feclipse-mosquitto
https://github.com/docker-library/official-images/blob/master/library/eclipse-mosquitto (https://github.com/docker-library/official-images/commits/master/library/eclipse-mosquitto)
Source of this description:
https://github.com/docker-library/docs/tree/master/eclipse-mosquitto (https://github.com/docker-library/docs/commits/master/eclipse-mosquitto)
Eclipse Mosquitto is an open source implementation of a server for versions 5, 3.1.1, and 3.1 of the MQTT protocol. Main homepage: http://mosquitto.org/
Cedalo provides commercial support, enterprise MQTT products, professional services and training for Eclipse Mosquitto.
Three directories have been created in the image to be used for configuration, persistent storage and logs.
/mosquitto/config /mosquitto/data /mosquitto/log
It is suggested to mirror this structure for your local configuration.
When running the image, the default configuration values are used. To use a custom configuration file, create your mosquitto.conf in $PWD/mosquitto/config/mosquitto.conf, then mount the config directory to /mosquitto/config.
console$ docker run -it -p 1883:1883 -v "$PWD/mosquitto/config:/mosquitto/config" s390x/eclipse-mosquitto
Configuration can be changed to:
/mosquitto/data/mosquitto/log/mosquitto.logi.e. add the following to mosquitto.conf:
persistence true persistence_location /mosquitto/data/ log_dest file /mosquitto/log/mosquitto.log
Note: If a volume is used, the data will persist between containers.
Run a container using the new image:
console$ docker run -it -p 1883:1883 -v "$PWD/mosquitto/config:/mosquitto/config" -v /mosquitto/data -v /mosquitto/log s390x/eclipse-mosquitto
or:
console$ docker run -it -p 1883:1883 -v "$PWD/mosquitto/config:/mosquitto/config" -v "$PWD/mosquitto/data:/mosquitto/data" -v "$PWD/mosquitto/log:/mosquitto/log" s390x/eclipse-mosquitto
Note: if the mosquitto configuration (mosquitto.conf) was modified to use non-default ports, the docker run command will need to be updated to expose the ports that have been configured.
For example, if you use port 1883 and port 8080:
console$ docker run -it -p 1883:1883 -p 8080:8080 -v "$PWD/mosquitto/config:/mosquitto/config" s390x/eclipse-mosquitto
The supported-tags list at the top of this page is authoritative. Official s390x/eclipse-mosquitto images are Alpine-based. Tag naming does not follow a generic "plain version" vs "version-alpine" split:
2.1.2-alpine, 2.1-alpine, alpine, 2, and latest all refer to the current Alpine 2.1 image. There is no separate non-Alpine 2.1 tag.2.0.22, 2.0.22-openssl, 2.0, 2.0-openssl, 2-openssl, and openssl refer to the Alpine 2.0 OpenSSL image (TLS-PSK and related OpenSSL features). Prefer an explicit 2.0* / *-openssl tag if you need this line; do not assume openssl alone means "latest Mosquitto".1.6.15-openssl and 1.6-openssl refer to the Alpine 1.6 OpenSSL image.If you are unsure which tag to use for current Mosquitto, prefer latest or a pinned 2.1*-alpine tag from the supported-tags list.
Eclipse Mosquitto is released under the https://www.eclipse.org/legal/epl-v20.html/https://eclipse.org/org/documents/edl-v10.php
As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).
Some additional license information which was able to be auto-detected might be found in https://github.com/docker-library/repo-info/tree/master/repos/eclipse-mosquitto.
As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。
来自真实用户的反馈,见证轩辕镜像的优质服务
以下是 s390x/eclipse-mosquitto 相关的常用 Docker 镜像,适用于 不同场景 等不同场景: