Files
BOS-React-/docker-compose.yml
aaryaman-s e2a2034e31 Add files via upload
Docker filea added
2025-07-22 12:17:40 +05:30

19 lines
292 B
YAML

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