File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -83,8 +83,7 @@ Building docs
83
83
- Docs are generated using [ Redocly] ( https://redocly.com/docs/cli/installation ) . To regenerate them, run the following
84
84
commands from the project root directory.
85
85
``` bash
86
- docker run -p 8080:80 -v ${PWD} :/spec docker.io/redocly/cli join spec/docs.yaml spec/polaris-management-service.yml spec/rest-catalog-open-api.yaml -o spec/index.yaml --prefix-components-with-info-prop title
87
- docker run -p 8080:80 -v ${PWD} :/spec docker.io/redocly/cli build-docs spec/index.yaml --output=docs/index.html --config=spec/redocly.yaml
86
+ docs/build
88
87
```
89
88
90
89
## License
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ set -eux
4
+
5
+ docker run -p 8080:80 -v ${PWD} :/spec --rm docker.io/redocly/cli join spec/docs.yaml spec/polaris-management-service.yml spec/rest-catalog-open-api.yaml -o spec/index.yaml --prefix-components-with-info-prop title
6
+ docker run -p 8080:80 -v ${PWD} :/spec --rm docker.io/redocly/cli build-docs spec/index.yaml --output=docs/index.html --config=spec/redocly.yaml
You can’t perform that action at this time.
0 commit comments