first commit

This commit is contained in:
mukesh13
2025-06-25 16:55:21 +05:30
parent 58e44ee8ab
commit a62d728bd3
18 changed files with 1214 additions and 102 deletions

15
docker-compose.yml Normal file
View File

@ -0,0 +1,15 @@
version: '3.8'
services:
web:
build:
context: .
dockerfile: Dockerfile
ports:
- "8086:3000"
environment:
- NODE_ENV=production
volumes:
- .:/app
- /app/node_modules
restart: unless-stopped