forked from golevelup/nestjs
-
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.
test(integration tests): rabbitmq integration tests
re golevelup#6
- Loading branch information
1 parent
d4cff51
commit f624335
Showing
29 changed files
with
5,531 additions
and
270 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
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,19 @@ | ||
version: "3" | ||
|
||
services: | ||
redis: | ||
image: redis | ||
ports: | ||
- "6379:6379" | ||
|
||
rabbit: | ||
image: "rabbitmq:management" | ||
environment: | ||
RABBITMQ_ERLANG_COOKIE: "SWQOKODSQALRPCLNMEQG" | ||
RABBITMQ_DEFAULT_USER: "rabbitmq" | ||
RABBITMQ_DEFAULT_PASS: "rabbitmq" | ||
RABBITMQ_DEFAULT_VHOST: "/" | ||
ports: | ||
- "15672:15672" | ||
- "5672:5672" | ||
tty: true |
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
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
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
Oops, something went wrong.