Added mongo container
This commit is contained in:
parent
3ab0e1fa43
commit
b75dce5352
|
@ -10,3 +10,6 @@ backend/.env
|
||||||
|
|
||||||
# Frontend-specific
|
# Frontend-specific
|
||||||
frontend/node_modules/
|
frontend/node_modules/
|
||||||
|
|
||||||
|
# Database-specific
|
||||||
|
database/data/
|
|
@ -1,5 +1,6 @@
|
||||||
services:
|
services:
|
||||||
backend:
|
backend:
|
||||||
|
container_name: backend
|
||||||
build:
|
build:
|
||||||
context: ./backend
|
context: ./backend
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
|
@ -10,6 +11,7 @@ services:
|
||||||
- ./backend:/app
|
- ./backend:/app
|
||||||
|
|
||||||
frontend:
|
frontend:
|
||||||
|
container_name: frontend
|
||||||
build:
|
build:
|
||||||
context: ./frontend
|
context: ./frontend
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
|
@ -19,3 +21,11 @@ services:
|
||||||
- ./frontend:/app
|
- ./frontend:/app
|
||||||
- ./frontend:/node_modules
|
- ./frontend:/node_modules
|
||||||
|
|
||||||
|
db:
|
||||||
|
container_name: database
|
||||||
|
image: mongodb/mongodb-community-server
|
||||||
|
ports:
|
||||||
|
- "27017:27017"
|
||||||
|
volumes:
|
||||||
|
- ./database/data:/data/db
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue