https://github.com/leafney/alpine-rabbitmq-standalone
Small RabbitMQ image of standalone.
https://github.com/leafney/alpine-rabbitmq-standalone
alpine docker rabbitmq
Last synced: 3 months ago
JSON representation
Small RabbitMQ image of standalone.
- Host: GitHub
- URL: https://github.com/leafney/alpine-rabbitmq-standalone
- Owner: leafney
- Created: 2017-03-09T10:10:13.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-09T10:37:28.000Z (over 8 years ago)
- Last Synced: 2025-01-14T15:23:43.403Z (5 months ago)
- Topics: alpine, docker, rabbitmq
- Language: Shell
- Size: 1000 Bytes
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### alpine-rabbitmq-standalone
Small RabbitMQ image of standalone.
***
#### Get image from DockerHub
```
$ docker pull leafney/alpine-rabbitmq-standalone
```#### Create a default rabbitmq container
```
$ docker run --name rmq -d -p 5672:5672 -p 15672:15672 leafney/alpine-rabbitmq-standalone
```With browser for `http://localhost:15672` by default `user` and `123456` .
***
#### Custom container
Set Login User and Password by yourself and Mount the rabbitmq log and data from container.
```
$ docker run --name rmq -d -p 5672:5672 -p 15672:15672 -v /home/tiger/rmqfiles:/rabbitmq/var -e RMQ_USER=tom -e RMQ_PWD=123123 leafney/alpine-rabbitmq-standalone
```