Begin working on docker intergration

This commit is contained in:
2021-01-23 23:57:30 +11:00
parent a983d60b32
commit d0b383f5de
7 changed files with 9183 additions and 21 deletions
+17
View File
@@ -0,0 +1,17 @@
version: '3.8'
services:
web:
build: .
ports:
- "3000:3000"
mongo:
image: mongo
environment:
MONGO_INITDB_ROOT_PASSWORD_FILE: ./mongo-auth.dev
volumes:
- db-data:/db-data
volumes:
db-data: