mirror of
https://github.com/bitnami/containers.git
synced 2026-02-19 05:27:22 +08:00
* RABBITMQ: Set RABBITMQ_LOGS env variable default to empty To setup `log.console`/`log.file` in RabbitMQ configuration, it is needed to set the environment variable `RABBITMQ_LOGS` to be empty. By default, the bitnami Helm chart set the default already to `-`. Signed-off-by: Anthony Hausman <anthony.hausman@backmarket.com> * Add RABBITMQ_LOGS env variable to docker-compose Signed-off-by: Anthony Hausman <anthony.hausman@backmarket.com> Co-authored-by: Javier J. Salmerón-García <jsalmeron@bitnami.com>
21 lines
397 B
YAML
21 lines
397 B
YAML
version: '2'
|
|
|
|
services:
|
|
rabbitmq:
|
|
image: docker.io/bitnami/rabbitmq:3.9
|
|
ports:
|
|
- '4369:4369'
|
|
- '5551:5551'
|
|
- '5552:5552'
|
|
- '5672:5672'
|
|
- '25672:25672'
|
|
- '15672:15672'
|
|
environment:
|
|
- RABBITMQ_SECURE_PASSWORD=yes
|
|
- RABBITMQ_LOGS=-
|
|
volumes:
|
|
- 'rabbitmq_data:/bitnami/rabbitmq/mnesia'
|
|
volumes:
|
|
rabbitmq_data:
|
|
driver: local
|