You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
adb.sh/docker-compose.dev.yml

16 lines
201 B
YAML

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