From e646487eb0aeeb36b4805c88481ff37e20194a9b Mon Sep 17 00:00:00 2001 From: inductor Date: Tue, 17 Mar 2020 12:49:05 +0900 Subject: [PATCH] Add Docker section in README --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 4f180474af..9c94c49710 100644 --- a/README.md +++ b/README.md @@ -57,6 +57,17 @@ $ yarn start The final `yarn start` command should open a local instance of Backstage in your browser, otherwise open one of the URLs printed in the terminal. +### (Optional)Try on Docker + +Run the following commands if you have Docker environment + +```bash +$ docker build . -t spotify/backstage +$ docker run --rm -it -p 3000:3000 backstage +``` + +Then open http://localhost:3000/ on your browser. + ## Documentation - [Create a Plugin](docs/getting-started/create-a-plugin.md)