Files
backstage/.tugboat/config.yml
T
2021-01-27 09:42:50 +01:00

18 lines
399 B
YAML

services:
backstage:
image: node:lts-alpine
expose: 7000
default: true
commands:
init:
- yarn install
build:
- yarn tsc
- yarn build
update:
- yarn install
- yarn tsc
- yarn build
start:
- node packages/backend/dist/main --config app-config.yaml --config .tugboat/tugboat.app-config.production.yaml &