-
Notifications
You must be signed in to change notification settings - Fork 566
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: synchronizing help from snyk/user-docs
- Loading branch information
1 parent
c17867b
commit 6a277bb
Showing
5 changed files
with
115 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
# Container SBOM | ||
|
||
## Prerequisites | ||
|
||
**Feature availability:** This feature currently in Open Beta and is available to customers on Snyk Enterprise plans. | ||
|
||
**Note:** In order to run the SBOM generation feature, you must use a minimum of CLI version 1.1226.0. | ||
|
||
The `snyk container sbom` feature requires an internet connection. | ||
|
||
## Usage | ||
|
||
`$ snyk container sbom --format=<cyclonedx1.4+json|cyclonedx1.4+xml|spdx2.3+json> [--org=<ORG_ID>] [--exclude-app-vulns] <IMAGE>` | ||
|
||
## Description | ||
|
||
The `snyk container sbom` command generates an SBOM for a container image. | ||
|
||
Supported formats includes CycloneDX v1.4 (JSON or XML) and SPDX v2.3 (JSON). | ||
|
||
A SBOM can be generated for operating system dependencies as well as application dependencies within the image. Unmanned dependencies are currently not supported. | ||
|
||
## Exit codes | ||
|
||
Possible exit codes and their meaning: | ||
|
||
**0**: success (process completed), SBOM created successfully\ | ||
**2**: failure, try to re-run command | ||
|
||
## Debug | ||
|
||
Use the `-d` or `--debug` option to output the debug logs. | ||
|
||
## Options | ||
|
||
### `--format=<cyclonedx1.4+json|cyclonedx1.4+xml|spdx2.3+json>` | ||
|
||
Required. Specify the output format for the SBOM to be produced. | ||
|
||
Set the desired SBOM output format. Available options are `cyclonedx1.4+json`, `cyclonedx1.4+xml`, and `spdx2.3+json` | ||
|
||
### `[--org=<ORG_ID>]` | ||
|
||
Specify the `<ORG_ID>` (name or UUID) to run Snyk commands tied to a specific organization. The `<ORG_ID>` influences some features availability and private test limits. | ||
|
||
Use this option when your default organization does not have API entitlement. | ||
|
||
If this option is omitted, the default organization for your account will be used. | ||
|
||
This is the `<ORG_ID>` that is the current preferred organization in your [Account settings](https://app.snyk.io/account)  | ||
|
||
Set a default to ensure all newly tested projects are tested under your default organization. If you need to override the default, use the `--org=<ORG_ID>` option. | ||
|
||
If you have multiple organizations, you can set a default from the CLI using: | ||
|
||
`$ snyk config set org=<ORG_ID>` | ||
|
||
**Note:** You can also use `--org=<orgslugname>.` The `ORG_ID` works in both the CLI and the API. The organization slug name works in the CLI, but not in the API. | ||
|
||
For more information see the article [How to select the organization to use in the CLI](https://support.snyk.io/hc/en-us/articles/360000920738-How-to-select-the-organization-to-use-in-the-CLI) | ||
|
||
### `[--exclude-app-vulns]` | ||
|
||
Snyk scans and generates an SBOM for operating system dependencies as well as application dependencies in your image by default. | ||
|
||
You can disable generation for application dependencies by adding `--exclude-app-vulns`. | ||
|
||
For more information about application scanning, see [Detect application vulnerabilities in container images](https://docs.snyk.io/scan-applications/snyk-container/use-snyk-container/detect-application-vulnerabilities-in-container-images) | ||
|
||
### `<IMAGE>` | ||
|
||
Required. The image for which you will generate an SBOM document. | ||
|
||
**Note:** The image should be specified in the format of `repo:tag`. | ||
|
||
## Examples for the snyk container sbom command | ||
|
||
### Create a CycloneDX JSON document for an image | ||
|
||
`$ snyk container sbom --format=cyclonedx1.4+json redis:latest` | ||
|
||
### Create a CycloneDX JSON document for an image and redirect stdout to a file | ||
|
||
`$ snyk container sbom --format=cyclonedx1.4+json redis:latest > mySBOM.json` | ||
|
||
### Create a SPDX JSON document for an image while excluding application dependencies | ||
|
||
`$ snyk container sbom --format=spdx2.3+json redis:latest ----exclude-app-vulns` | ||
|
||
### Refer to a container image by its digest | ||
|
||
`$ snyk container sbom --format=cyclonedx1.4+xml alpine@sha256:c5c5fda71656f28e49ac9c5416b3643eaa6a108a8093151d6d1afc9463be8e33` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters