diff --git a/public/svgs/rabbitmq.svg b/public/svgs/rabbitmq.svg new file mode 100644 index 000000000..7a94d71bb --- /dev/null +++ b/public/svgs/rabbitmq.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/templates/compose/rabbitmq.yaml b/templates/compose/rabbitmq.yaml index b28171f1a..b8846c8b7 100644 --- a/templates/compose/rabbitmq.yaml +++ b/templates/compose/rabbitmq.yaml @@ -1,15 +1,18 @@ -# ignore: true # documentation: https://www.rabbitmq.com/documentation.html # slogan: With tens of thousands of users, RabbitMQ is one of the most popular open source message brokers. # tags: message broker, message queue, message-oriented middleware, MOM, AMQP, MQTT, STOMP, messaging +# logo: svgs/rabbitmq.svg +# port: 15672 services: rabbitmq: - image: rabbitmq:3 + image: rabbitmq:3-management environment: - - SERVICE_FQDN_RABBITMQ_5672 + - SERVICE_FQDN_RABBITMQ_15672 - RABBITMQ_DEFAULT_USER=$SERVICE_USER_RABBITMQ - RABBITMQ_DEFAULT_PASS=$SERVICE_PASSWORD_RABBITMQ + ports: + - 5672:5672 healthcheck: test: rabbitmq-diagnostics -q ping interval: 30s