@quobix/vacuum 0.0.26 → 0.0.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -141,17 +141,15 @@ vacuum is available as a container, you can pull the image from
|
|
|
141
141
|
docker pull dshanley/vacuum
|
|
142
142
|
```
|
|
143
143
|
|
|
144
|
-
|
|
144
|
+
To run, mount the current working dir to the container and use a relative path to your spec, like so
|
|
145
145
|
|
|
146
146
|
```
|
|
147
|
-
docker
|
|
147
|
+
docker run --rm -v $PWD:/work:ro dshanley/vacuum lint <your-openapi-spec.yaml>
|
|
148
148
|
```
|
|
149
149
|
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
docker dshanley/vacuum lint <your-openapi-spec.yaml>
|
|
154
|
-
```
|
|
150
|
+
Alternatively, you can pull it from
|
|
151
|
+
[Github packages](https://github.com/daveshanley/vacuum/pkgs/container/vacuum).
|
|
152
|
+
To do that, replace `dshanley/vacuum` with `ghcr.io/daveshanley/vacuum` in the above commands.
|
|
155
153
|
|
|
156
154
|
## Build an interactive HTML report
|
|
157
155
|
|