Skip to content

Commit

Permalink
Merge pull request #42 from TogetherCrew/feature/41-dev-add-docker-co…
Browse files Browse the repository at this point in the history
…mposedevyml-for-broker-lib-ts

docker-compose for development purpose was added
  • Loading branch information
cyri113 authored Sep 14, 2023
2 parents ac6efb2 + d45a0e5 commit 486a817
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docker-compose.dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
version: "3.9"

services:
mongo:
image: "mongo:6.0.8"
ports:
- 27017:27017
environment:
- MONGO_INITDB_ROOT_USERNAME=root
- MONGO_INITDB_ROOT_PASSWORD=pass
rabbitmq:
image: "rabbitmq:3-management-alpine"
ports:
- 5672:5672
- 15672:15672
environment:
- RABBITMQ_DEFAULT_USER=root
- RABBITMQ_DEFAULT_PASS=pass

0 comments on commit 486a817

Please sign in to comment.