chore: 🔧 add dev Docker Compose with MongoDB

main
RaviAnand Mohabir 11 months ago
parent d4a7a5cafd
commit 37af4f88b1

@ -0,0 +1,13 @@
version: "3.1"
services:
mongo:
image: mongo
restart: always
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example
ports:
- 27017:27017
volumes:
- ./.mongo:/data/db
Loading…
Cancel
Save