17 lines
456 B
YAML
17 lines
456 B
YAML
services:
|
|
backstage:
|
|
image: tugboatqa/node:lts
|
|
expose: 7000
|
|
default: true
|
|
commands:
|
|
init:
|
|
- yarn install
|
|
build:
|
|
- yarn tsc
|
|
- yarn build
|
|
update:
|
|
- yarn install
|
|
start:
|
|
# This should be production, but we need to run backend:bundle like the dockerfile does.
|
|
- yarn start-backend --config $PWD/app-config.yaml --config $PWD/.tugboat/tugboat.app-config.production.yaml &
|