Added mongo Dockerfile

This commit is contained in:
Luke Else 2021-10-31 14:02:29 +01:00
commit d223cac8b1
2 changed files with 13 additions and 0 deletions

4
MongoDB/Dockerfile Normal file
View File

@ -0,0 +1,4 @@
FROM mongo:latest
EXPOSE 27017

9
MongoDB/instructions Normal file
View File

@ -0,0 +1,9 @@
Launch plain docker file
docker run -d -p 27017:27017 -v ~/dataMongo:/data/db mongo
Create a user (root) and any other databases (with users)
Close and re-run docker file with auth enabled (DBs Should persist)
docker run -d -p 27017:27017 -v ~/dataMongo:/data/db mongo --auth