mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-02-08 23:52:22 +00:00
Start a trivy server service (#4288)
This commit is contained in:
parent
3ab579c03f
commit
08cdfbde94
1 changed files with 15 additions and 0 deletions
|
@ -13,12 +13,14 @@ steps:
|
||||||
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
|
||||||
|
|
Loading…
Reference in a new issue