From 2e5e47379b079a10c2984999649ad1abe66168fc Mon Sep 17 00:00:00 2001 From: Victor Mignot Date: Tue, 18 Oct 2022 23:21:16 -0400 Subject: [PATCH] Provide Docker Compose for running a local Mongo database --- compose.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 compose.yaml diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000..2f5bfc6 --- /dev/null +++ b/compose.yaml @@ -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