Add files via upload

Docker filea added
This commit is contained in:
aaryaman-s
2025-07-22 12:17:40 +05:30
committed by GitHub
parent 7305fc1311
commit e2a2034e31
2 changed files with 40 additions and 0 deletions

18
docker-compose.yml Normal file
View File

@@ -0,0 +1,18 @@
version: '3.8'
services:
backend:
build:
context: ./backend
ports:
- "5000:5000"
environment:
- NODE_ENV=production
frontend:
build:
context: ./frontend
ports:
- "3000:80"
environment:
- NODE_ENV=production