Code Monkey home page Code Monkey logo

docker-rabbitmq's Introduction

docker-rabbitmq

A rabbitmq docker image based on RabbitMQ Official Image with some plugins enabled by default.

Plugins Enabled

Protocol Port Plugin
AMQP 5672 base system
CLUSTERING 25672
HTTP (non-TLS) 15672 rabbitmq_management
HTTP (non-TLS) 15692 rabbitmq_prometheus
HTTP/WEB-MQTT 15675 rabbitmq_web_mqtt
HTTP/WEB-STOMP 15674 rabbitmq_web_stomp
MQTT 1883 rabbitmq_mqtt
STOMP 61613 rabbitmq_stomp

References

Usage

Docker CLI

# create a named volume to make easy docker volume management
docker volume create --driver local rabbitmq-volume

# create/run container
docker run --detach \
    --name rabbitmq \
    --hostname rabbitmq \
    --volume rabbitmq-volume:/var/lib/rabbitmq \
    --publish 1883:1883 \
    --publish 5671:5671 \
    --publish 5672:5672 \
    --publish 15672:15672 \
    --publish 15674:15674 \
    --publish 15675:15675 \
    --publish 15692:15692 \
    --publish 25672:25672 \
    --publish 61613:61613 \
    --env RABBITMQ_DEFAULT_USER=admin \
    --env RABBITMQ_DEFAULT_PASS=admin \
    --env RABBITMQ_DEFAULT_VHOST=admin \
    --env RABBITMQ_ERLANG_COOKIE='EOzFBGMs1AK6E5QIat444' \
    --log-opt max-size=10m \
    --log-opt max-file=5 \
    pedrozc90/rabbitmq

Access management interface http://localhost:15672

Docker Composer

docker-compose --file ./docker-compose.yml up --detach

License

Please, see LICENSE file.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.