
如果你使用 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 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。
Maintained by:
https://github.com/docker-library/rabbitmq
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/docker-library/rabbitmq/blob/e4308abcac2a5f14f364795d0b0d7bdd2ba7f3ad/4.3/ubuntu/Dockerfile
https://github.com/docker-library/rabbitmq/blob/7e83ecd7bb6404c334f92d9f71a2c49527e265db/4.3/ubuntu/management/Dockerfile
https://github.com/docker-library/rabbitmq/blob/e4308abcac2a5f14f364795d0b0d7bdd2ba7f3ad/4.3/alpine/Dockerfile
https://github.com/docker-library/rabbitmq/blob/7e83ecd7bb6404c334f92d9f71a2c49527e265db/4.3/alpine/management/Dockerfile
https://github.com/docker-library/rabbitmq/blob/e8397f8205a7de8dfe7ae55d7e71130723fea8cc/4.2/ubuntu/Dockerfile
https://github.com/docker-library/rabbitmq/blob/aadf274f3109618ecf1e4a42053eb081c05648a5/4.2/ubuntu/management/Dockerfile
https://github.com/docker-library/rabbitmq/blob/e8397f8205a7de8dfe7ae55d7e71130723fea8cc/4.2/alpine/Dockerfile
https://github.com/docker-library/rabbitmq/blob/aadf274f3109618ecf1e4a42053eb081c05648a5/4.2/alpine/management/Dockerfile
https://github.com/docker-library/rabbitmq/blob/64098758e3a09534ad31ff3218c38b63738de429/4.1/ubuntu/Dockerfile
https://github.com/docker-library/rabbitmq/blob/d54bc9eb77df22cf91cea8d385c7cc0f5f5a8ab2/4.1/ubuntu/management/Dockerfile
https://github.com/docker-library/rabbitmq/blob/64098758e3a09534ad31ff3218c38b63738de429/4.1/alpine/Dockerfile
https://github.com/docker-library/rabbitmq/blob/d54bc9eb77df22cf91cea8d385c7cc0f5f5a8ab2/4.1/alpine/management/Dockerfile
https://github.com/docker-library/rabbitmq/blob/520bf5d0353da956892d915006be3825afd07cbd/4.0/ubuntu/Dockerfile
https://github.com/docker-library/rabbitmq/blob/1d***e01506aef0a3bdbae090f3a94512a5e/4.0/ubuntu/management/Dockerfile
https://github.com/docker-library/rabbitmq/blob/520bf5d0353da956892d915006be3825afd07cbd/4.0/alpine/Dockerfile
https://github.com/docker-library/rabbitmq/blob/1d***e01506aef0a3bdbae090f3a94512a5e/4.0/alpine/management/Dockerfile
Where to file issues:
https://github.com/docker-library/rabbitmq/issues?q=
Supported architectures: (https://github.com/docker-library/official-images#architectures-other-than-amd64)
https://hub.docker.com/r/amd64/rabbitmq/, https://hub.docker.com/r/arm32v6/rabbitmq/, https://hub.docker.com/r/arm32v7/rabbitmq/, https://hub.docker.com/r/arm64v8/rabbitmq/, https://hub.docker.com/r/i386/rabbitmq/, https://hub.docker.com/r/ppc64le/rabbitmq/, https://hub.docker.com/r/riscv64/rabbitmq/, https://hub.docker.com/r/s390x/rabbitmq/
Published image artifact details:
https://github.com/docker-library/repo-info/blob/master/repos/rabbitmq (https://github.com/docker-library/repo-info/commits/master/repos/rabbitmq)
(image metadata, transfer size, etc)
Image updates:
https://github.com/docker-library/official-images/issues?q=label%3Alibrary%2Frabbitmq
https://github.com/docker-library/official-images/blob/master/library/rabbitmq (https://github.com/docker-library/official-images/commits/master/library/rabbitmq)
Source of this description:
https://github.com/docker-library/docs/tree/master/rabbitmq (https://github.com/docker-library/docs/commits/master/rabbitmq)
RabbitMQ is open source message broker software (sometimes called message-oriented middleware) that implements the Advanced Message Queuing Protocol (AMQP). The RabbitMQ server is written in the Erlang programming language and is built on the Open Telecom Platform framework for clustering and failover. Client libraries to interface with the broker are available for all major programming languages.
***.org/wiki/RabbitMQ
One of the important things to note about RabbitMQ is that it stores data based on what it calls the "Node Name", which defaults to the hostname. What this means for usage in Docker is that we should specify -h/--hostname explicitly for each daemon so that we don't get a random hostname and can keep track of our data:
console$ docker run -d --hostname my-rabbit --name some-rabbit rabbitmq:3
This will start a RabbitMQ container listening on the default port of 5672. If you give that a minute, then do docker logs some-rabbit, you'll see in the output a block similar to:
=INFO REPORT==== 6-Jul-2015::20:47:02 === node : rabbit@my-rabbit home dir : /var/lib/rabbitmq config file(s) : /etc/rabbitmq/rabbitmq.config cookie hash : UoNOcDhfxW9uoZ92wh6BjA== log : tty sasl log : tty database dir : /var/lib/rabbitmq/mnesia/rabbit@my-rabbit
Note the database dir there, especially that it has my "Node Name" appended to the end for the file storage. This image makes all of /var/lib/rabbitmq a volume by default.
For a list of environment variables supported by RabbitMQ itself, see the https://www.rabbitmq.com/configure.html#supported-environment-variables
WARNING: As of RabbitMQ 3.9, all of the docker-specific variables listed below are deprecated and no longer used. Please use a configuration file instead; visit https://www.rabbitmq.com/configure.html to learn more about the configuration file. For a starting point, the 3.8 images will print out the config file it generated from supplied environment variables.
bash# Unavailable in 3.9 and up RABBITMQ_DEFAULT_PASS_FILE RABBITMQ_DEFAULT_USER_FILE RABBITMQ_MANAGEMENT_SSL_CACERTFILE RABBITMQ_MANAGEMENT_SSL_CERTFILE RABBITMQ_MANAGEMENT_SSL_DEPTH RABBITMQ_MANAGEMENT_SSL_FAIL_IF_NO_PEER_CERT RABBITMQ_MANAGEMENT_SSL_KEYFILE RABBITMQ_MANAGEMENT_SSL_VERIFY RABBITMQ_SSL_CACERTFILE RABBITMQ_SSL_CERTFILE RABBITMQ_SSL_DEPTH RABBITMQ_SSL_FAIL_IF_NO_PEER_CERT RABBITMQ_SSL_KEYFILE RABBITMQ_SSL_VERIFY RABBITMQ_VM_MEMORY_HIGH_WATERMARK
If you wish to change the default username and password of guest / guest, you can do so with the RABBITMQ_DEFAULT_USER and RABBITMQ_DEFAULT_PASS environmental variables. These variables were available previously in the docker-specific entrypoint shell script but are now available in RabbitMQ directly.
console$ docker run --detach --hostname my-rabbit --name some-rabbit \ --env RABBITMQ_DEFAULT_USER=user \ --env RABBITMQ_DEFAULT_PASS=password \ --publish 15672:15672 \ --publish 5672:5672 \ rabbitmq:management
You can then go to http://localhost:15672 or http://host-ip:15672 in a browser and use user/password to gain access to the https://www.rabbitmq.com/docs/management.
If you wish to change the default vhost, you can do so with the RABBITMQ_DEFAULT_VHOST environmental variables:
console$ docker run -d --hostname my-rabbit --name some-rabbit -e RABBITMQ_DEFAULT_VHOST=my_vhost rabbitmq:3-management
RabbitMQ contains functionality which explicitly tracks and manages memory usage, and thus needs to be made aware of cgroup-imposed limits (e.g. https://docs.docker.com/config/containers/resource_constraints/#limit-a-containers-access-to-memory).
The upstream configuration setting for this is vm_memory_high_watermark in rabbitmq.conf, and it is described under https://www.rabbitmq.com/memory.html in the documentation. If you set a relative limit via vm_memory_high_watermark.relative, then RabbitMQ will calculate its limits based on the host's total memory and not the limit set by the contianer runtime.
See the https://www.rabbitmq.com/clustering.html#erlang-cookie for more information about cookies and why they're necessary. For setting a consistent cookie (especially useful for clustering but also for remote/cross-container administration via rabbitmqctl), provide a cookie file (default location of /var/lib/rabbitmq/.erlang.cookie).
For example, you can provide the cookie via a file (such as with https://docs.docker.com/engine/swarm/secrets/):
consoledocker service create ... --secret source=my-erlang-cookie,target=/var/lib/rabbitmq/.erlang.cookie ... rabbitmq
(Note that it will likely also be necessary to specify uid=XXX,gid=XXX,mode=0600 in order for Erlang in the container to be able to read the cookie file properly. See https://docs.docker.com/reference/cli/docker/service/create/#secret.)
There is a second set of tags provided with the https://www.rabbitmq.com/management.html installed and enabled by default, which is available on the standard management port of ***, with the default username and password of guest / guest:
console$ docker run -d --hostname my-rabbit --name some-rabbit rabbitmq:3-management
You can access it by visiting http://container-ip:15672 in a browser or, if you need access outside the host, on port 8080:
console$ docker run -d --hostname my-rabbit --name some-rabbit -p 8080:15672 rabbitmq:3-management
You can then go to http://localhost:8080 or http://host-ip:8080 in a browser.
Creating a Dockerfile will have them enabled at runtime. To see the full list of plugins present on the image rabbitmq-plugins list
DockerfileFROM rabbitmq:3.8-management RUN rabbitmq-plugins enable --offline rabbitmq_mqtt rabbitmq_federation_management rabbitmq_stomp
You can also mount a file at /etc/rabbitmq/enabled_plugins with contents as an erlang list of atoms ending with a period.
Example enabled_plugins
bash[rabbitmq_federation_management,rabbitmq_management,rabbitmq_mqtt,rabbitmq_stomp].
If configuration is required, it is recommended to supply an appropriate /etc/rabbitmq/rabbitmq.conf file (see https://www.rabbitmq.com/configure.html#configuration-files), for example via bind-mount, https://docs.docker.com/engine/swarm/configs/, or a short Dockerfile with a COPY instruction.
Alternatively, it is possible to use the RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS environment variable, whose syntax is described http://erlang.org/doc/design_principles/applications.html#id81887 (the appropriate value for -ApplName is -rabbit), this method requires a slightly different reproduction of its equivalent entry in rabbitmq.conf. For example, configuring https://www.rabbitmq.com/configure.html#config-items would look something like -e RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS="-rabbit channel_max 4007". Where the space between the variable channel_max and its value 4007 correctly becomes a comma when translated in the environment.
See https://github.com/docker-library/faq#healthcheck and https://github.com/docker-library/rabbitmq/pull/174#issuecomment-452002696 for a detailed explanation of why this image does not come with a default HEALTHCHECK defined, and for suggestions for implementing your own health/liveness/readiness checks.
The rabbitmq images come in many flavors, each designed for a specific use case.
rabbitmq:<version>This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of.
rabbitmq:<version>-alpineThis image is based on the popular [***] available in https://hub.docker.com/_/alpine. Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general.
This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use https://musl.libc.org instead of https://www.etalabs.net/compare_libcs.html, so software will often run into issues depending on the depth of their libc requirements/assumptions. See this Hacker News comment thread for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images.
To minimize image size, it's uncommon for additional related tools (such as git or bash) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the https://hub.docker.com/_/alpine/ for examples of how to install packages if you are unfamiliar).
View https://www.rabbitmq.com/mpl.html for the software contained in this image.
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/rabbitmq.
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.
以下是 rabbitmq 相关的常用 Docker 镜像,适用于 不同场景 等不同场景:
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。
来自真实用户的反馈,见证轩辕镜像的优质服务