From c2652bb941b7ea3dff7200fcbd329b6f73b33bb9 Mon Sep 17 00:00:00 2001 From: kairusds Date: Sat, 18 Apr 2026 15:39:21 +0200 Subject: [PATCH] Add version constraint for woodpeckerci/woodpecker-agent Docker image (#777) * Add 443 port for WOODPECKER_SERVER environment variable to fix edge cases of SSL errors occuring Signed-off-by: kairusds Reviewed-on: https://codeberg.org/Codeberg/Documentation/pulls/777 Reviewed-by: Gusted Co-authored-by: kairusds Co-committed-by: kairusds --- content/ci/agents.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/ci/agents.md b/content/ci/agents.md index 1256872..b43b98c 100644 --- a/content/ci/agents.md +++ b/content/ci/agents.md @@ -70,14 +70,14 @@ Tokens are added as the `WOODPECKER_AGENT_SECRET` environment variable to avoid ```yaml services: woodpecker-agent: - image: woodpeckerci/woodpecker-agent:v3 + image: woodpeckerci/woodpecker-agent:v3.13.0 command: agent restart: always volumes: - woodpecker-agent-config:/etc/woodpecker - /var/run/docker.sock:/var/run/docker.sock environment: - - WOODPECKER_SERVER=grpc.ci.codeberg.org + - WOODPECKER_SERVER=grpc.ci.codeberg.org:443 - WOODPECKER_AGENT_SECRET=${WOODPECKER_AGENT_SECRET} - WOODPECKER_GRPC_SECURE=true