https://github.com/dharmit/pipeline-scanner
An atomic scanner for https://github.com/dharmit/ccp-openshift/
https://github.com/dharmit/pipeline-scanner
Last synced: about 1 year ago
JSON representation
An atomic scanner for https://github.com/dharmit/ccp-openshift/
- Host: GitHub
- URL: https://github.com/dharmit/pipeline-scanner
- Owner: dharmit
- Created: 2018-03-13T06:18:43.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-13T06:19:59.000Z (over 8 years ago)
- Last Synced: 2025-02-10T05:29:16.191Z (over 1 year ago)
- Language: Python
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Atomic scanner: pipeline-scanner
--------------------------------
This is a container image scanner based on `atomic scan`. The goal of the
scanner is to scan CentOS based Docker images in the CentOS Community Container
Pipeline and generate relevant results.
Steps to use:
- Pull Docker image from **registry.centos.org**:
```
$ docker pull registry.centos.org/pipeline-images/pipeline-scanner
```
- Install it using `atomic`:
```
$ atomic install registry.centos.org/pipeline-images/pipeline-scanner
```
- Mount the image's rootfs because by default `atomic scan` would mount it in
read-only mode but we need read-write capability:
```
$ atomic mount -o rw centos:centos7 /mnt
```
Make sure you have `centos:centos7` available locally before you try to mount
- Run the scanner on CentOS based images:
```
$ atomic scan --scanner pipeline-scanner --rootfs=/mnt centos:centos7
```