From c875b94868c30a10a1d8de379eba0ebd923992be Mon Sep 17 00:00:00 2001 From: Jason Walker Date: Tue, 14 Apr 2020 15:26:13 -0500 Subject: [PATCH] update getting started doco; xref 551 --- docs/getting-started/development-environment.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/getting-started/development-environment.md b/docs/getting-started/development-environment.md index bb5b24333e..779236916e 100644 --- a/docs/getting-started/development-environment.md +++ b/docs/getting-started/development-environment.md @@ -26,10 +26,12 @@ You can now view example-app in the browser. Run the following commands if you have Docker environment ```bash -$ docker build . -t spotify/backstage +$ yarn docker-build $ docker run --rm -it -p 80:80 spotify/backstage ``` +> See [package.json](package.json) for other yarn commands/options. + Then open http://localhost/ on your browser. [Back to Docs](README.md)