first commit
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
version: '3.1'
|
||||
|
||||
services:
|
||||
|
||||
db:
|
||||
image: mongo
|
||||
ports:
|
||||
- "27017:27017"
|
||||
volumes:
|
||||
- ./data:/data/db
|
||||
|
||||
backend:
|
||||
image: node:20
|
||||
working_dir: /backend
|
||||
volumes:
|
||||
- ./backend:/backend
|
||||
ports:
|
||||
- "3000:3000"
|
||||
command: ["npm", "run", "dev"]
|
||||
depends_on:
|
||||
- db
|
||||
Reference in New Issue
Block a user