From 7e55f2b635d2436b2f8c2cda6ef6ae1c0b1ae748 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Sun, 30 Jun 2024 08:56:56 +0100 Subject: [PATCH] Add compose for test-db --- test-db.compose.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test-db.compose.yaml diff --git a/test-db.compose.yaml b/test-db.compose.yaml new file mode 100644 index 0000000..c95a1fc --- /dev/null +++ b/test-db.compose.yaml @@ -0,0 +1,10 @@ +version: '3.8' +services: + mongodb: + image: mongo:7 + ports: + - '27017:27017' + volumes: + - dbdata:/data/db +volumes: + dbdata6: \ No newline at end of file