Files
backstage/.tugboat/config.yml
T
2021-01-27 11:17:12 +01:00

17 lines
459 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.
- node packages/backend/dist/main --config app-config.yaml --config .tugboat/tugboat.app-config.production.yaml &