-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #185 from ORNL/wordcount
Clean up ordered word count example
- Loading branch information
Showing
5 changed files
with
11,998 additions
and
47 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,17 @@ | ||
# Docker Compose file for running a RabbitMQ broker | ||
# More info about RabbitMQ at https://www.rabbitmq.com | ||
|
||
# Commands for using Docker Compose | ||
# Create and start containers ............... docker compose up | ||
# Create and start in detached mode ......... docker compuse up -d | ||
# Stop active services in terminal .......... press Ctrl+C | ||
# Stop and remove containers and networks ... docker compose down | ||
|
||
services: | ||
|
||
rabbitmq: | ||
image: "rabbitmq:3.13-management" | ||
container_name: "rabbitmq" | ||
ports: | ||
- "5672:5672" | ||
- "15672:15672" |
Oops, something went wrong.