Skip to content

asapdotid/dcc-rabbitmq

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker Compose RabbitMQ

RabbitMQ is an open source general-purpose message broker that is designed for consistent, highly-available messaging scenarios (both synchronous and asynchronous).

Make sure docker network exist:

docker network create proxy
docker network create secure

Makefile commands for run the code

make help

First of all:

  • Init setup env: make init
  • Init docker compose env: make compose-init

Proxy environment variables

You could custom environment of setup proxy with Traefik on .make/.env:

# with proxy
DOCKER_PROJECT_PROXY=true

Or

# without proxy (default)
DOCKER_PROJECT_PROXY=false
  • 📖 Docker compose RabbitMQ config of Bitnami RabbitMQ link
  • 📖 RabbitMQ custom.conf custom config of link
  • 📖 RabbitMQ advanced.config sample config of link

Troubleshoot Persisting data mount to container

Now chown this directory to 1001:root since the image is using UID 1001 as the user running the command:

sudo chown -R 1001:root .data/data

License

MIT / BSD

Author Information

This Code was created in 2023 by Asapdotid.