DIND Docker image template with git for build-x pipelines.
Go to file
Pavel Dmitriev fe6db1184d
agola/docker-dind-buildx/Build image The run finished successfully Details
CI fix
2022-05-02 17:09:24 +03:00
.agola CI fix 2022-05-02 17:09:24 +03:00
rootfs/usr/local/bin Added sources 2022-03-21 23:32:54 +03:00
Dockerfile Added sources 2022-03-21 23:32:54 +03:00
LICENSE Initial commit 2022-03-21 23:30:34 +03:00
README.md Изменил(а) на 'README.md' 2022-03-23 23:02:59 +03:00

README.md

docker-dind.buildx-git

DIND Docker image template with git for build-x pipelines.

pipeline sample for agola

version: v0
runs:
  - name: Build image
    tasks:
      - name: build docker image
        runtime:
          containers:
            - image: docker-buildx:dind-git
              privileged: true
        working_dir: /workspace
        steps:
          - run:
              name: buildX prepare
              command: buildx-bgstart.sh
          - run: 
              name: buildX build
              command: |
                docker login ${DOCKERLOGIN} -p ${DOCKERPASS} 
                docker buildx build --platform linux/amd64,linux/arm64 . -t ${DOCKERIMAGE} --push