-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Andrey Anisimov
authored and
Andrey Anisimov
committed
May 6, 2021
1 parent
7c38b06
commit 0f41d0e
Showing
4 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
version: "3" | ||
|
||
services: | ||
db: | ||
image: mysql:5.7 | ||
command: --default-authentication-plugin=mysql_native_password | ||
restart: on-failure | ||
environment: | ||
MYSQL_ROOT_PASSWORD: 123 | ||
ports: | ||
- "3306:3306" | ||
redis: | ||
image: "redis:alpine" | ||
ports: | ||
- "6379:6379" | ||
environment: | ||
REDIS_PASSWORD: 123 | ||
rabbitmq: | ||
image: bitnami/rabbitmq:latest | ||
ports: | ||
- 15672:15672 | ||
- 5672:5672 | ||
command: sh -c "rabbitmq-plugins enable rabbitmq_management; rabbitmq-server" | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[rabbitmq_delayed_message_exchange,rabbitmq_management,rabbitmq_management_agent,rabbitmq_web_dispatch]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[ | ||
{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, [".*", ".*", ".*"]}, | ||
{log_levels, [{connection, debug}, {channel, debug}]} | ||
]} | ||
]. |
Binary file added
BIN
+42.9 KB
www-infra-docker-compose/rabbit/rabbitmq_delayed_message_exchange-20171201-3.7.x.ez
Binary file not shown.