VisionaryBroadband / docker-rabbitmqadmin

A rabbitmqadmin docker image for administration of RabbitMQ

Home Page:https://hub.docker.com/r/activatedgeek/rabbitmqadmin/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

docker-rabbitmqadmin

Build Status

A rabbitmqadmin docker image for administration of RabbitMQ.

The container contains the following:

Images

Usage

Pull the docker image from Docker hub as:

$ docker pull activatedgeek/rabbitmqadmin

By default, this will pull the latest image.

The entrypoint of this Docker image is rabbitmqadmin which can be used by automated job schedulers directly.

A few environment variables can be provided to connect to the broker as:

  • RABBIT_HOST: reachable IP or FQDN of the broker (default: 127.0.0.1)
  • RABBIT_PORT: port to access RabbitMQ at (default: 15672)
  • RABBIT_USER: username of the broker account (default: guest)
  • RABBIT_PASSWORD: associated password (default: guest)
  • RABBIT_VHOST: associated password (default: /)

A sample execution:

$ docker run --rm activatedgeek/rabbitmqadmin:latest list queues

In other cases the entrypoint can be overriden as:

$ docker run --rm -it --entrypoint sh activatedgeek/rabbitmqadmin:latest

This will open up the sh shell.

Build

To build the latest image from source, run

$ make latest

About

A rabbitmqadmin docker image for administration of RabbitMQ

https://hub.docker.com/r/activatedgeek/rabbitmqadmin/


Languages

Language:Shell 63.6%Language:Makefile 36.4%