-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Customizing RabbitMQ image to enable MQTT and STOMP and Prometheus Qu…
…eue Metrics. Removing gago.io and dockerdefinitivo.com from heartbeat
- Loading branch information
1 parent
8acc18c
commit 924f983
Showing
5 changed files
with
37 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
FROM rabbitmq:3.8-management-alpine | ||
|
||
ADD ./rabbitmq.conf /etc/rabbitmq/rabbitmq.conf | ||
|
||
RUN rabbitmq-plugins enable --offline \ | ||
rabbitmq_mqtt rabbitmq_web_mqtt \ | ||
rabbitmq_stomp rabbitmq_web_stomp \ | ||
rabbitmq_federation rabbitmq_federation_management \ | ||
rabbitmq_shovel rabbitmq_shovel_management | ||
|
||
RUN apk add curl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
loopback_users.guest = false | ||
listeners.tcp.default = 5672 | ||
management.tcp.port = 15672 | ||
|
||
|
||
prometheus.return_per_object_metrics = true | ||
prometheus.path = /metrics | ||
prometheus.tcp.port = 15692 |