From 785502f113daf253ede27b65cd52b4af9ca7d201 Mon Sep 17 00:00:00 2001 From: WorkClub Automation Date: Sun, 8 Mar 2026 16:05:28 +0100 Subject: [PATCH] fix(cd): configure buildx for HTTP-only insecure registry Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus --- .gitea/workflows/cd-bootstrap.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.gitea/workflows/cd-bootstrap.yml b/.gitea/workflows/cd-bootstrap.yml index 17f45d6..bc9156a 100644 --- a/.gitea/workflows/cd-bootstrap.yml +++ b/.gitea/workflows/cd-bootstrap.yml @@ -90,6 +90,11 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 + with: + config-inline: | + [registry."192.168.241.13:8080"] + http = true + insecure = true - name: Build and push backend multi-arch image working-directory: ./backend @@ -145,6 +150,11 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 + with: + config-inline: | + [registry."192.168.241.13:8080"] + http = true + insecure = true - name: Build and push frontend multi-arch image working-directory: ./frontend