18 lines
316 B
YAML
18 lines
316 B
YAML
services:
|
|
dev:
|
|
image: docker.io/node:alpine
|
|
volumes:
|
|
- ./:/app:z
|
|
working_dir: /app
|
|
user: ${UID}:${GROUPS}
|
|
command:
|
|
- sh
|
|
- -c
|
|
- |-
|
|
yarn install
|
|
yarn parcel serve --dist-dir /tmp/dist
|
|
ports:
|
|
- 1234:1234
|
|
labels:
|
|
katenary.v3/ignore: true
|