Skip to content

Commit

Permalink
replace redis with mongo
Browse files Browse the repository at this point in the history
  • Loading branch information
Kylie Pace committed Jan 14, 2021
1 parent c5ac697 commit b105014
Show file tree
Hide file tree
Showing 11 changed files with 327 additions and 147 deletions.
11 changes: 7 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,14 @@
version: '3.7'

services:
redis:
image: redis:6.0.7
container_name: redis
mongodb:
image: mongo:latest
environment:
MONGO_INITDB_ROOT_USERNAME: ${MONGO_INITDB_ROOT_USERNAME}
MONGO_INITDB_ROOT_PASSWORD: ${MONGO_INITDB_ROOT_PASSWORD}
MONGO_INITDB_DATABASE: ${MONGO_INITDB_DATABASE}
ports:
- 6379:6379
- "27017:27017"

zookeeper:
image: confluentinc/cp-zookeeper:5.2.2
Expand Down
217 changes: 152 additions & 65 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b105014

Please sign in to comment.