This commit is contained in:
2025-09-15 17:04:09 +02:00
parent ecce65db79
commit 3cbe01e458
21 changed files with 1568 additions and 92 deletions

21
docker-compose.dev.yml Normal file
View File

@@ -0,0 +1,21 @@
version: '3.8'
services:
iitwelders-dev:
build:
context: .
dockerfile: Dockerfile.dev
ports:
- "8080:8080"
volumes:
- .:/app
- /app/node_modules
environment:
- NODE_ENV=development
- CHOKIDAR_USEPOLLING=true
restart: unless-stopped
container_name: iitwelders-dev
command: npm run dev
volumes:
node_modules: