Skip to content

Commit 53014a8

Browse files
authored
docs(scout): standardize CLI command to docker scout in CI guides (#24844)
## Summary Standardize the Docker Scout CLI command on `docker scout` (with space) across the CircleCI and Jenkins integration guides so it matches the format used in `azure.md`, `gitlab.md`, and the rest of the Scout docs (`install.md`, `quickstart.md`, `gha.md`). ## Issue Fixes #24843 ## Changes - `content/manuals/scout/integrations/ci/circle-ci.md`: change `docker-scout cves …` to `docker scout cves …` - `content/manuals/scout/integrations/ci/jenkins.md`: change `docker-scout cves …` to `docker scout cves …` Other references to `docker-scout` that are not CLI invocations (the binary filename in `install.md`, the GitHub Action step `id: docker-scout` in `gha.md`, external URLs, and Azure resource names) are intentionally left unchanged. ## Testing - Docs-only change. Diff is two lines, no content rewrites. Signed-off-by: Niels Kaspers <kaspersniels@gmail.com>
1 parent 0177514 commit 53014a8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

content/manuals/scout/integrations/ci/circle-ci.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ steps:
5555
- run:
5656
name: Scan image for CVEs
5757
command: |
58-
docker-scout cves $IMAGE_TAG --exit-code --only-severity critical,high
58+
docker scout cves $IMAGE_TAG --exit-code --only-severity critical,high
5959
```
6060
6161
This checks out the repository files and then sets up a separate Docker

content/manuals/scout/integrations/ci/jenkins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ pipeline {
3131
sh 'echo $DOCKER_HUB_PSW | docker login -u $DOCKER_HUB_USR --password-stdin'
3232
3333
// Analyze and fail on critical or high vulnerabilities
34-
sh 'docker-scout cves $IMAGE_TAG --exit-code --only-severity critical,high'
34+
sh 'docker scout cves $IMAGE_TAG --exit-code --only-severity critical,high'
3535
}
3636
}
3737
}

0 commit comments

Comments
 (0)