Files
nqsltd/docker-compose.yml
2025-09-10 14:41:36 +02:00

15 lines
254 B
YAML

version: '3.8'
services:
app:
build: .
ports:
- "8080:8080"
volumes:
- .:/app
- /app/node_modules
environment:
- NODE_ENV=development
stdin_open: true
tty: true
command: npm run dev -- --host 0.0.0.0