From c22cf02bed6e018a31f27182560b8fd5cb71dfac Mon Sep 17 00:00:00 2001 From: Ben Cotton Date: Wed, 11 Sep 2024 17:41:51 -0400 Subject: [PATCH] Add the ClearlyDefined certifier to the demo compose file (#2129) Fixes #2128 Signed-off-by: Ben Cotton --- container_files/guac-demo-compose.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/container_files/guac-demo-compose.yaml b/container_files/guac-demo-compose.yaml index 586e275e4c..162526ecea 100644 --- a/container_files/guac-demo-compose.yaml +++ b/container_files/guac-demo-compose.yaml @@ -43,6 +43,17 @@ services: graphql: condition: service_healthy + cd-certifier: + image: $GUAC_IMAGE + command: "/opt/guac/guacone certifier cd -p --csub-addr=collectsub:2782 --gql-addr=http://graphql:8080/query" + working_dir: /guac + restart: on-failure + depends_on: + collectsub: + condition: service_healthy + graphql: + condition: service_healthy + osv-certifier: image: $GUAC_IMAGE command: "/opt/guac/guacone certifier osv -p --csub-addr=collectsub:2782 --gql-addr=http://graphql:8080/query"