Provide Docker Compose for running a local Mongo database

This commit is contained in:
Victor Mignot 2022-10-18 23:21:16 -04:00
parent ae27d92b68
commit 2e5e47379b
No known key found for this signature in database
GPG key ID: FFE4EF056FB5E0D0

11
compose.yaml Normal file
View file

@ -0,0 +1,11 @@
services:
mongodb:
image: mongo:latest
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: root
MONGO_INITDB_DATABASE: yorokobot
ports:
- 27017:27017