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.
16 lines
201 B
YAML
16 lines
201 B
YAML
11 months ago
|
version: '3'
|
||
|
|
||
|
networks:
|
||
|
web:
|
||
|
external: true
|
||
|
|
||
|
services:
|
||
|
frontend:
|
||
|
image: node:16
|
||
|
volumes:
|
||
|
- ./:/app
|
||
|
working_dir: /app
|
||
|
command: 'npm run dev'
|
||
|
ports:
|
||
|
- "8080:8080"
|