brouter-web/docker-compose.yml
2020-06-08 15:11:56 +02:00

23 lines
499 B
YAML

version: '3'
services:
## usage: docker-compose run --rm serve
## : docker-compose up (-d) serve
serve:
command: yarn serve
image: node:lts
ports:
- 3000:3000
user: '1000'
volumes:
- ./:/src
working_dir: /src
## usage: docker-compose run --rm install
install:
command: yarn install
image: node:lts
user: '1000'
volumes:
- ./:/src
working_dir: /src