2023-10-27 12:22:35 +00:00
|
|
|
# ignore: true
|
2023-10-26 22:42:15 +00:00
|
|
|
# documentation: https://www.rabbitmq.com/documentation.html
|
2023-10-27 12:22:35 +00:00
|
|
|
# slogan: With tens of thousands of users, RabbitMQ is one of the most popular open source message brokers.
|
2023-10-26 22:42:15 +00:00
|
|
|
# tags: message broker, message queue, message-oriented middleware, MOM, AMQP, MQTT, STOMP, messaging
|
|
|
|
|
|
|
|
services:
|
|
|
|
rabbitmq:
|
2023-10-27 12:22:35 +00:00
|
|
|
image: rabbitmq:3
|
2023-10-26 22:42:15 +00:00
|
|
|
environment:
|
|
|
|
- SERVICE_FQDN_RABBITMQ_5672
|
|
|
|
- RABBITMQ_DEFAULT_USER=$SERVICE_USER_RABBITMQ
|
|
|
|
- RABBITMQ_DEFAULT_PASS=$SERVICE_PASSWORD_RABBITMQ
|
|
|
|
healthcheck:
|
|
|
|
test: rabbitmq-diagnostics -q ping
|
|
|
|
interval: 30s
|
|
|
|
timeout: 30s
|
|
|
|
retries: 3
|