fix(ci): TCP 2375 > TLS port 2376 disabled innside pod

This commit is contained in:
Marc Lasserre 2026-08-26 21:10:42 +02:00
parent f6078c3f10
commit 612048bc41
Signed by: M7s
GPG Key ID: F74837410959661B
1 changed files with 6 additions and 3 deletions

View File

@ -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