An open API service indexing awesome lists of open source software.

https://github.com/edersonbrilhante/vilicus-gitlab

GitLab CI Template to use Vilicus in your GitLab Pipelines
https://github.com/edersonbrilhante/vilicus-gitlab

anchore cicd clair docker-image docker-scanner gitlab-template oci-image scan-images security security-scanner security-tools security-vulnerability trivy vilicus

Last synced: 13 days ago
JSON representation

GitLab CI Template to use Vilicus in your GitLab Pipelines

Awesome Lists containing this project

README

          

# Vilicus Gitlab

## How to use
```yaml
include:
- remote: https://raw.githubusercontent.com/edersonbrilhante/vilicus-gitlab/main/Vilicus.gitlab-ci.yml

# scanning a remote image
remote_image:
extends: .vilicus
variables:
IMAGE: python
tags:
-

# build a local image and scanning it
local_image:
extends: .vilicus
variables:
IMAGE: localhost:5000/local-image:${CI_COMMIT_SHORT_SHA}
script:
- docker build -t localhost:5000/local-image:${CI_COMMIT_SHORT_SHA} .
- ./run-job.sh
tags:
-
```