working
This commit is contained in:
parent
16305734e0
commit
e3698f3626
18
Rabbitmq/Dockerfile
Normal file
18
Rabbitmq/Dockerfile
Normal file
@ -0,0 +1,18 @@
|
||||
# 3.13 management
|
||||
FROM rabbitmq:3.13-rc
|
||||
|
||||
RUN set eux; \
|
||||
rabbitmq-plugins enable --offline rabbitmq_management; \
|
||||
# make sure the metrics collector is re-enabled (disabled in the base image for Prometheus-style metrics by default)
|
||||
rm -f /etc/rabbitmq/conf.d/20-management_agent.disable_metrics_collector.conf; \
|
||||
# grab "rabbitmqadmin" from inside the "rabbitmq_management-X.Y.Z" plugin folder
|
||||
# see https://github.com/docker-library/rabbitmq/issues/207
|
||||
cp /plugins/rabbitmq_management-*/priv/www/cli/rabbitmqadmin /usr/local/bin/rabbitmqadmin; \
|
||||
[ -s /usr/local/bin/rabbitmqadmin ]; \
|
||||
chmod +x /usr/local/bin/rabbitmqadmin; \
|
||||
apt-get update; \
|
||||
apt-get install -y --no-install-recommends python3; \
|
||||
rm -rf /var/lib/apt/lists/*; \
|
||||
rabbitmqadmin --version
|
||||
|
||||
EXPOSE 15671 15672
|
@ -2,13 +2,17 @@
|
||||
version: '3'
|
||||
services:
|
||||
rabbitmq:
|
||||
image: rabbitmq:latest
|
||||
build: ./
|
||||
restart: unless-stopped
|
||||
container_name: rabbitmq
|
||||
# Configuration
|
||||
# https://www.rabbitmq.com/configure.html
|
||||
volumes:
|
||||
- ./rabbitmq.conf:/etc/rabbitmq/rabbitmq.conf
|
||||
security_opt:
|
||||
- no-new-privileges:true
|
||||
environment:
|
||||
- RABBITMQ_DEFAULT_USER=username
|
||||
- RABBITMQ_DEFAULT_PASS=password
|
||||
ports:
|
||||
# Web-management
|
||||
- 8080:15672
|
||||
|
||||
|
||||
|
0
Rabbitmq/rabbitmq.conf
Normal file
0
Rabbitmq/rabbitmq.conf
Normal file
Loading…
Reference in New Issue
Block a user