Advanced use of Snyk Container CLI
Scan archives
In addition to scanning images from a local Docker daemon or remote registry, Snyk can directly scan or monitor a Docker or Open Container Initiative (OCI) archive when you use the following commands:
snyk container test docker-archive:<filename>.tarOR
snyk container test oci-archive:<filename>.tar.
Beginning with CLI version 1.1296.0, you can scan and monitor Kaniko image archives using the following commands:
snyk container test kaniko-archive:<filename>.tarsnyk container monitor kaniko-archive:<filename>.tar.
Beginning with CLI version 1.1297.0, you can scan and monitor image archives without specifying the archive type:
snyk container test <filename>.tarsnyk container monitor <filename>.tar.
This update maintains full support for the current CLI scanning features and ensures backward compatibility.
Examples:
snyk container test docker-archive:archive.tar
snyk container test oci-archive:archive.tar
snyk container test kaniko-archive:archive.tar
snyk container test archive.tarTest multi-platform images
Some repositories represent multi-manifests, pointing to several different images depending on the operating system and the architecture required. To explicitly scan an image for a specific platform, you can use the Snyk CLI container test command, for example:
snyk container test --platform=linux/arm64 debianThe --platform option must contain one of the following:
linux/amd64
linux/arm64
linux/riscv64
linux/ppc64le
linux/s390x
linux/386
linux/arm/v7
linux/arm/v
Authenticate to a remote container registry
When Docker is installed, the Snyk CLI container commands use any pre-configured registry authentication. If you are not using Docker, you can pass the credentials on the command line in one of the following ways:
Use the following environment variables:
SNYK_REGISTRY_USERNAMEandSNYK_REGISTRY_PASSWORDPass the username and password:
snyk container test <repository>:<tag> --username= --password=Use an alternate Docker context
The Snyk CLI container commands always use the default Docker context. To force the Snyk CLI to use an alternate context's connection, set the DOCKER_HOST environment variable to the desired context URI.
Other commonly used CLI options
Frequently used CLI options include:
--json- useful for integrating with other tools--sarif- useful for integrating with other tools. The option is available only withcontainer test. See also OASIS Static Analysis Results Interchange Format (SARIF).--exclude-base-image-vulns- only available withcontainer test--severity-threshold- available only withcontainer test--exclude-app-vulns--nested-jars-depth--fail-on- available only withcontainer test
For more details and CLI options, see the Snyk CLI container help or display the help by running:
snyk container --helpLast updated
Was this helpful?

