From a74a03591273f2b3cfe7642db964eebbcd702da3 Mon Sep 17 00:00:00 2001 From: deepkoluguri Date: Mon, 11 May 2026 21:19:56 +0000 Subject: [PATCH] ci: use docker bridge gateway 172.17.0.1:2375 to reach dind from job containers --- .gitea/workflows/build.yaml | 41 +++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index e69de29..6da7462 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,41 @@ +name: Build and Deploy Chitfund +on: [push] + +jobs: + build-backend: + runs-on: ubuntu-latest + env: + DOCKER_HOST: tcp://172.17.0.1:2375 + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Build and push Backend (Kaniko) + run: | + docker run --rm \ + -v $GITEA_WORKSPACE:/workspace \ + gcr.io/kaniko-project/executor:latest \ + --context=/workspace/backend \ + --dockerfile=/workspace/backend/Dockerfile \ + --destination=192.168.8.250:5000/chitfund-backend:latest \ + --insecure \ + --skip-tls-verify + + build-frontend: + runs-on: ubuntu-latest + env: + DOCKER_HOST: tcp://172.17.0.1:2375 + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Build and push Frontend (Kaniko) + run: | + docker run --rm \ + -v $GITEA_WORKSPACE:/workspace \ + gcr.io/kaniko-project/executor:latest \ + --context=/workspace/luckychit \ + --dockerfile=/workspace/luckychit/Dockerfile \ + --destination=192.168.8.250:5000/chitfund-frontend:latest \ + --insecure \ + --skip-tls-verify \ No newline at end of file