mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:31 +02:00
Add RabbitMQ
This commit is contained in:
parent
b4e041f447
commit
838ac32496
26
rabbitmq/README.md
Normal file
26
rabbitmq/README.md
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
Rabbit MQ
|
||||||
|
=======
|
||||||
|
localhost 15672
|
||||||
|
user guest
|
||||||
|
pw guest
|
||||||
|
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Config
|
||||||
|
[
|
||||||
|
{rabbit,
|
||||||
|
[
|
||||||
|
%% The default "guest" user is only permitted to access the server
|
||||||
|
%% via a loopback interface (e.g. localhost).
|
||||||
|
%% {loopback_users, [<<"guest">>]},
|
||||||
|
%%
|
||||||
|
%% Uncomment the following line if you want to allow access to the
|
||||||
|
%% guest user from anywhere on the network.
|
||||||
|
{loopback_users, []},
|
||||||
|
{default_vhost, "/"},
|
||||||
|
{default_user, "guest"},
|
||||||
|
{default_pass, "guest"},
|
||||||
|
{default_permissions, [".*", ".*", ".*"]}
|
||||||
|
]}
|
||||||
|
].
|
||||||
|
```
|
14
rabbitmq/docker-compose.yml
Normal file
14
rabbitmq/docker-compose.yml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
version: '3'
|
||||||
|
|
||||||
|
services:
|
||||||
|
|
||||||
|
rabbitmq:
|
||||||
|
image: "rabbitmq:3-management"
|
||||||
|
hostname: "rabbit"
|
||||||
|
ports:
|
||||||
|
- "15672:15672"
|
||||||
|
- "5672:5672"
|
||||||
|
labels:
|
||||||
|
NAME: "rabbitmq"
|
||||||
|
volumes:
|
||||||
|
- ./rabbitmq-isolated.conf:/etc/rabbitmq/rabbitmq.config
|
Loading…
Reference in New Issue
Block a user