12 lines
158 B
YAML
12 lines
158 B
YAML
|
version: "2"
|
||
|
|
||
|
services:
|
||
|
vuetest:
|
||
|
build: .
|
||
|
command: "yarn serve"
|
||
|
restart: "no"
|
||
|
volumes:
|
||
|
- "${PWD}:/app"
|
||
|
ports:
|
||
|
- "3000:8080"
|