From 612048bc41d338d870c47b87cc858aeac61dce4b Mon Sep 17 00:00:00 2001 From: Marc Lasserre Date: Wed, 26 Aug 2026 21:10:42 +0200 Subject: [PATCH] fix(ci): TCP 2375 > TLS port 2376 disabled innside pod --- .gitea/workflows/ci.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 8ef5a80..6acd8a1 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -14,18 +14,21 @@ jobs: - name: Authentification Giteastry env: - DOCKER_HOST: tcp://localhost:2375 + DOCKER_HOST: tcp://localhost:2376 + DOCKER_TLS_VERIFY: "0" run: | echo "${{ secrets.GITEA_TOKEN }}" | docker login git.gorym.net -u ${{ gitea.actor }} --password-stdin - name: Build Image Runner env: - DOCKER_HOST: tcp://localhost:2375 + DOCKER_HOST: tcp://localhost:2376 + DOCKER_TLS_VERIFY: "0" run: | docker build -t git.gorym.net/rym/devsecops-runner:latest . - name: Push vers Giteastry env: - DOCKER_HOST: tcp://localhost:2375 + DOCKER_HOST: tcp://localhost:2376 + DOCKER_TLS_VERIFY: "0" run: | docker push git.gorym.net/rym/devsecops-runner:latest -- 2.39.5