Add dev docker compose

This commit is contained in:
adb-sh 2023-12-14 22:04:27 +01:00
parent a656368323
commit f3196b18cd

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

@ -0,0 +1,15 @@
version: '3'
networks:
web:
external: true
services:
frontend:
image: node:16
volumes:
- ./:/app
working_dir: /app
command: 'npm run dev'
ports:
- "8080:8080"