Skip to content

Commit

Permalink
Add a script for running RabbitMQ
Browse files Browse the repository at this point in the history
  • Loading branch information
sunnyeo committed Dec 15, 2021
1 parent 2fe5b49 commit 2990288
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions run_rabbitmq.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash

USER=fugio
PASS=fugio_password
docker run -d --name rabbitmq -p 5672:5672 -p 15672:15672 -p 25672:25672 \
--restart=unless-stopped \
-e RABBITMQ_DEFAULT_USER=$USER \
-e RABBITMQ_DEFAULT_PASS=$PASS \
rabbitmq:management

0 comments on commit 2990288

Please sign in to comment.