Skip to content

Commit

Permalink
add a development docker compose to root of project
Browse files Browse the repository at this point in the history
allows devs to perform a `docker compose up -d` at any time
to create their mongo, redis in docker immediately without
having to go grab the details from docs.coralproject.net
  • Loading branch information
nick-funk committed Dec 2, 2024
1 parent 317fe8b commit 56f8964
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
services:
redis:
image: redis:7.2.5
container_name: coral-redis
restart: always
ports:
- "6379:6379"
mongo:
image: mongo:8.0.3
container_name: coral-mongo
restart: always
ports:
- "27017:27017"

0 comments on commit 56f8964

Please sign in to comment.