You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
clair/contrib/analyze-local-images
Quentin Machu ff3c6eccc8
contrib: Catch signals to delete tmp folder in local-analyze-images
8 years ago
..
Godeps contrib: Add vendors to analyze-local-images 8 years ago
vendor fix typo in errors.go 8 years ago
README.md contrib: Fix dead link from analyze-local-images' README 8 years ago
main.go contrib: Catch signals to delete tmp folder in local-analyze-images 8 years ago

README.md

Analyze local images

This is a basic tool that allow you to analyze your local Docker images with Clair. It is intended to let everyone discover Clair and offer awareness around containers' security. There are absolutely no guarantees and it only uses a minimal subset of Clair's features.

Install

To install the tool, simply run the following command, with a proper Go environment:

go get -u github.com/coreos/clair/contrib/analyze-local-images

You also need a working Clair instance. To learn how to run Clair, take a look at the README. You then should wait for its initial vulnerability update to complete, which may take some time.

Usage

If you are running Clair locally (ie. compiled or local Docker),

analyze-local-images <Docker Image ID>

Or, If you run Clair remotely (ie. boot2docker),

analyze-local-images -endpoint "http://<CLAIR-IP-ADDRESS>:6060" -my-address "<MY-IP-ADDRESS>" <Docker Image ID>

Clair needs access to the image files. If you run Clair locally, this tool will store the files in the system's temporary folder and Clair will find them there. It means if Clair is running in Docker, the host's temporary folder must be mounted in the Clair's container. If you run Clair remotely, this tool will run a small HTTP server to let Clair downloading them. It listens on the port 9279 and allows a single host: Clair's IP address, extracted from the -endpoint parameter. The my-address parameters defines the IP address of the HTTP server that Clair will use to download the images. With boot2docker, these parameters would be -endpoint "http://192.168.99.100:6060" -my-address "192.168.99.1".

As it runs an HTTP server and not an HTTPS one, be sure to not expose sensitive data and container images.