aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Christopher Baklid <[email protected]>2018-05-26 16:37:56 +0200
committerGravatar Christopher Baklid <[email protected]>2018-05-26 16:37:56 +0200
commit1f4b827b439e236a24a811404dcb5c2e278f206d (patch)
tree4fa1251fe338a38dc3f955fa7783cac497b563ca /README.md
parentautomatically clean up queues and message to reduce rabbitmq memory footprint (diff)
add rabbitmq mgmt webinterface, handle container autodiscovery better, minor code optimisations, update readme
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/README.md b/README.md
index 031e817..52ab8ef 100644
--- a/README.md
+++ b/README.md
@@ -36,12 +36,14 @@ pipenv sync --dev
Start a rabbitmq instance and get the container IP
```bash
-docker run --name rmq -d rabbitmq:3.7.5-alpine
+docker run -d --name rmq -p 15672:15672 -e RABBITMQ_DEFAULT_USER=rabbits -e RABBITMQ_DEFAULT_PASS=rabbits rabbitmq:3.7.5-management-alpine
docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' rmq
# expected output with default setting: 172.17.0.2
# If not, change the config.py file to match
```
+rabbitmq webinterface: `http://localhost:15672`
+
start the webserver
```bash