Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents

...

  • An authorized account to Amazon ECR and can pull images from Amazon ECR

  • Installations of Amazon AWS CLI and Docker

  • Unified Agent will scan the images on your local host (after these have been pulled from Amazon ECR)

  • Unified Agent requires downloading a JAR file and a configuration file. You can download them manually or by using the steps described below.

...

Alternatively, leave the docker.excludes parameter commented if you want to scan all your image containers. 

Configuration Parameters

Attribute

Type

Description

Required

docker.includes

String

Space separated list specifying which files to include in the scan.

No

docker.excludes

String

Space separated list specifying which files to exclude in the scan.

No

docker.scanImages

Boolean

Indicates whether or not to scan images.  

No. Default is true

docker.pull.enable

Boolean

When true then pulls from all relevant registries. When false does not pull from registries.

No. Default is false

docker.pull.images

String

Indicates which images to pull. Value can be a GLOB pattern or a list of values separated by spaces.
Example:' .* github .*'  includes among others,  'github-scanner' and 'test/github'.

No. Default is '. * . * '

docker.pull.tags

String

Indicates which tags to pull. Value can include GLOB pattern or a list of values separated by space (e.g., 'latest' or GLOB pattern such as '. * 18.6 . *').

No. Default is '. * . * '

docker.pull.digest

String

The content-addressable identifier called a digest. As long as the input used to generate the image is unchanged, the digest value is predictable.
Can be '.' or or a list of explicit values separated by space. Cannot include GLOB patterns such as '.98765'.

No. Default is '. * . * '

docker.delete.force

Boolean

Enables to use Docker to delete images with the 'force' flag. This is required if the user pulled images that are related to other images, and in such cases a regular delete may not work properly.

No. Default is false

docker.aws.enable

Boolean

Enables pulling Docker Images from Amazon ECR.

No. Default is false

docker.aws.registryIds

String

The Registry IDs list on Amazon Web Services (the AWS 12-digit account IDs that correspond to the Amazon ECR registries). The  list must include the following:

  • Full registry IDs and no GLOB patterns. 

  • At least one registry ID. Values are space-delimited.

NOTE: Required if docker.aws.enable=true.

Yes

docker.pull.maxImages

Integer

WhiteSource stops pulling more images when the indicated value of pulled images is reached, 

No. Defualt is 10

docker.login.sudo

Boolean

Docker login requires user to use 'sudo' or 'root' user. When set to true, login is as a 'sudo' user.

No. Default is true.

Running the Unified Agent

Run the Unified Agent with the modified configuration file via this command:

Code Block
languagebash
java -jar wss-unified-agent.jar -apiKey xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx -c wss-unified-agent.config

...

The scanner saves your required images and scans the entire file system and installed packages.
It scans all the image layers, and handles archive files in the layers based on the value in the property 'archiveExtractionDepth'.

The Docker image is saved to the temporary directory defined in your environment and is deleted immediately after the scan.

The scanning results are presented in a new WhiteSource project identified by the name of the image in the following format:  <image id> <repository> <tag>.
The project is created in the WhiteSource product specified in the configuration file or command line.

...