From 5e4d006a030c8c860b93f39aa7ee73f8c261e6a4 Mon Sep 17 00:00:00 2001 From: buenosairesam Date: Fri, 2 Jan 2026 21:42:00 -0300 Subject: [PATCH] use docker plugin for build --- .woodpecker.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 848472f..434c43a 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -6,11 +6,11 @@ when: steps: - name: build - image: docker - commands: - - echo === Building sysmonstm === - - docker build -t registry:5000/sysmonstm:latest -f ctrl/standalone/Dockerfile ctrl/standalone/ - - docker push registry:5000/sysmonstm:latest - - echo === Done === - volumes: - - /var/run/docker.sock:/var/run/docker.sock + image: plugins/docker + settings: + repo: registry:5000/sysmonstm + registry: registry:5000 + tag: latest + dockerfile: ctrl/standalone/Dockerfile + context: ctrl/standalone + insecure: true