6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2025-01-11 09:35:06 +00:00

Add the management plugin to the rabbitmq container

The management plugin exposes an http API that makes it possible to
monitor rabbitmq. By default, we do not expose the management dashboard.
As a consequence, the API is only usable by other internal containers.
This commit is contained in:
Régis Behmo 2020-03-09 13:19:20 +01:00
parent 702e8cca7d
commit c2628d2b9c
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@ Note: Breaking changes between versions are indicated by "💥".
## Unreleased ## Unreleased
- [Improvement] Add the management plugin to the rabbitmq container
- [Improvement] Make it possible to run an Elasticsearch service on https - [Improvement] Make it possible to run an Elasticsearch service on https
## v3.11.5 (2020-02-27) ## v3.11.5 (2020-02-27)

View File

@ -37,7 +37,7 @@ DOCKER_IMAGE_MONGODB: "mongo:3.2.16"
DOCKER_IMAGE_MYSQL: "mysql:5.6.36" DOCKER_IMAGE_MYSQL: "mysql:5.6.36"
DOCKER_IMAGE_ELASTICSEARCH: "elasticsearch:1.5.2" DOCKER_IMAGE_ELASTICSEARCH: "elasticsearch:1.5.2"
DOCKER_IMAGE_NGINX: "nginx:1.13" DOCKER_IMAGE_NGINX: "nginx:1.13"
DOCKER_IMAGE_RABBITMQ: "rabbitmq:3.6.10" DOCKER_IMAGE_RABBITMQ: "rabbitmq:3.6.10-management-alpine"
DOCKER_IMAGE_SMTP: "namshi/smtp:latest" DOCKER_IMAGE_SMTP: "namshi/smtp:latest"
DOCKER_REGISTRY: "docker.io/" DOCKER_REGISTRY: "docker.io/"
LOCAL_PROJECT_NAME: "tutor_local" LOCAL_PROJECT_NAME: "tutor_local"