According to the documentation configuration changes such as logging changes can be adjusted via an additional .conf file in a separate folder that is declared via the RABBITMQ_CONFIG_FILES environment variable.
FROM rabbitmq:3.10In my local conf folder I have the file 'disable_logging.conf' with the log level change.
log.console.level = errorI build the image that way
docker build -t rabbitmqlocal .and run it that way
docker run rabbitmqlocalWhatever I do, I tried various .conf files, with or without `chown' rabbitmq always stops the boot process with this line in the logs
2022-09-26 12:41:03.377639+00:00 [notice] <0.44.0> Application syslog exited with reason: stoppedHow do I change log level on a local rabbitmq docker container?