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