Skip to content

Commit

Permalink
Merge pull request #185 from ORNL/wordcount
Browse files Browse the repository at this point in the history
Clean up ordered word count example
  • Loading branch information
wigging authored Sep 13, 2024
2 parents b580d57 + fd9d0b0 commit 13875a1
Show file tree
Hide file tree
Showing 5 changed files with 11,998 additions and 47 deletions.
17 changes: 17 additions & 0 deletions compose.yaml
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"
Loading

0 comments on commit 13875a1

Please sign in to comment.