Added docker images for MongoDB and Redis to project. Updated readme with instructions to run docker images

This commit is contained in:
Alex Holliday
2024-05-28 10:41:10 -07:00
parent 2a4e0c17a0
commit 29d4b5477f
4 changed files with 67 additions and 17 deletions
+4 -1
View File
@@ -1,3 +1,6 @@
node_modules
.env
*.log
*.log
*.sh
docker/mongo/mongo_data/*
docker/redis/redis_data/*
+2
View File
@@ -0,0 +1,2 @@
FROM mongo
EXPOSE 27017
+2
View File
@@ -0,0 +1,2 @@
FROM redis
EXPOSE 6379