nqsltd/docker-compose.yml

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