18 lines
392 B
YAML
18 lines
392 B
YAML
services:
|
|
backstage:
|
|
image: tugboatqa/node:lts
|
|
expose: 7000
|
|
default: true
|
|
commands:
|
|
init:
|
|
- yarn install
|
|
build:
|
|
- yarn tsc
|
|
- yarn build
|
|
update:
|
|
- yarn install
|
|
- yarn tsc
|
|
- yarn build
|
|
start:
|
|
- node packages/backend --config app-config.yaml --config .tugboat/tugboat.app-config.production.yaml &
|