16 lines
507 B
YAML
16 lines
507 B
YAML
services:
|
|
backstage:
|
|
image: tugboatqa/node:lts
|
|
expose: 7000
|
|
default: true
|
|
commands:
|
|
init:
|
|
- yarn install
|
|
build:
|
|
- yarn workspace example-app build
|
|
update:
|
|
- yarn install
|
|
start:
|
|
# This should be production, but we need to run backend:bundle like the dockerfile does.
|
|
- cd packages/backend && node_modules/.bin/backstage-cli backend:dev --config ../../app-config.yaml --config ../../.tugboat/tugboat.app-config.production.yaml
|