Merge pull request #279 from inductor/feature/docker

Add Docker
This commit is contained in:
Patrik Oldsberg
2020-03-18 09:51:00 +01:00
committed by GitHub
3 changed files with 34 additions and 0 deletions
+11
View File
@@ -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 80:80 spotify/backstage
```
Then open http://localhost/ on your browser.
## Documentation
- [Create a Plugin](docs/getting-started/create-a-plugin.md)