From 2a67c8bed201da03702c059f45b1c8af6d550635 Mon Sep 17 00:00:00 2001 From: admin Date: Wed, 22 Apr 2026 08:16:10 +0800 Subject: [PATCH] =?UTF-8?q?=E9=85=8D=E7=BD=AE=20insecure=20registry=20?= =?UTF-8?q?=E8=A7=A3=E5=86=B3=20HTTPS=20=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build-docker-image.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-docker-image.yml b/.github/workflows/build-docker-image.yml index 4e8bf34e7..2fc990e07 100644 --- a/.github/workflows/build-docker-image.yml +++ b/.github/workflows/build-docker-image.yml @@ -62,14 +62,20 @@ jobs: echo "VERSION=$(date +%Y%m%d-%H%M%S)" >> $GITHUB_OUTPUT fi + - name: Docker Setup Buildx + uses: docker/setup-buildx-action@v3 + with: + config-inline: | + [registry."git.viaeon.com"] + http = true + insecure = true + - name: Login to Gitea Registry uses: docker/login-action@v3 with: registry: git.viaeon.com username: ${{ github.actor }} password: ${{ secrets.CI_TOKEN }} - env: - DOCKER_BUILDKIT: 0 - name: Build and push Docker image uses: docker/build-push-action@v5