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: 12 days ago
JSON representation
GitLab CI Template to use Vilicus in your GitLab Pipelines
- Host: GitHub
- URL: https://github.com/edersonbrilhante/vilicus-gitlab
- Owner: edersonbrilhante
- License: mit
- Created: 2021-03-17T17:54:22.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-03-17T18:49:50.000Z (over 5 years ago)
- Last Synced: 2025-02-23T03:25:03.678Z (over 1 year ago)
- Topics: anchore, cicd, clair, docker-image, docker-scanner, gitlab-template, oci-image, scan-images, security, security-scanner, security-tools, security-vulnerability, trivy, vilicus
- Homepage: http://vilicus.edersonbrilhante.com.br/
- Size: 2.93 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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:
-
```