Files
backstage/docs/getting-started/deployment-other.md
T
2020-09-16 21:47:19 +05:30

582 B

id, title, description
id title description
deployment-other Other Documentation on different ways of Deployment

Deploying Locally

Try on Docker

Run the following commands if you have Docker environment

$ yarn install
$ yarn docker-build
$ docker run --rm -it -p 7000:7000 -e NODE_ENV=development example-backend:latest

Then open http://localhost/ on your browser.

Running with docker-compose

There is also a docker-compose.yaml that you can use to replace the previous docker run command:

$ yarn install
$ yarn docker-build
$ docker-compose up