Start a trivy server service (#4288) (#4312)

This commit is contained in:
6543 2024-11-06 01:06:39 +01:00 committed by GitHub
parent 5c4dbaa8fb
commit bbdabae564
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,19 +6,21 @@ when:
- renovate/* - renovate/*
variables: variables:
- &trivy_plugin docker.io/woodpeckerci/plugin-trivy:1.1.1 - &trivy_plugin docker.io/woodpeckerci/plugin-trivy:1.2.0
steps: steps:
backend: backend:
depends_on: [] depends_on: []
image: *trivy_plugin image: *trivy_plugin
settings: settings:
server: server
skip-dirs: web/,docs/ skip-dirs: web/,docs/
docs: docs:
depends_on: [] depends_on: []
image: *trivy_plugin image: *trivy_plugin
settings: settings:
server: server
skip-dirs: node_modules/,plugins/woodpecker-plugins/node_modules/ skip-dirs: node_modules/,plugins/woodpecker-plugins/node_modules/
dir: docs/ dir: docs/
@ -26,5 +28,18 @@ steps:
depends_on: [] depends_on: []
image: *trivy_plugin image: *trivy_plugin
settings: settings:
server: server
skip-dirs: node_modules/ skip-dirs: node_modules/
dir: web/ dir: web/
services:
server:
image: *trivy_plugin
# settings:
# service: true
# db-repository: docker.io/aquasec/trivy-db:2
environment:
PLUGIN_SERVICE: 'true'
PLUGIN_DB_REPOSITORY: 'docker.io/aquasec/trivy-db:2'
ports:
- 10000