diff --git a/.github/workflows/docker-build-container.yaml b/.github/workflows/docker-build-container.yaml index fddf1c8..a7c2560 100644 --- a/.github/workflows/docker-build-container.yaml +++ b/.github/workflows/docker-build-container.yaml @@ -23,6 +23,7 @@ jobs: - name: Build docker image uses: senzing-factory/github-action-docker-buildx-build@v1 with: + build-options: "-q" image-repository: senzing/${{ steps.repo-basename.outputs.repo }} password: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }} platforms: linux/amd64 diff --git a/.github/workflows/docker-push-containers-to-dockerhub-manual.yaml b/.github/workflows/docker-push-containers-to-dockerhub-manual.yaml index 5281e1b..c8a526d 100644 --- a/.github/workflows/docker-push-containers-to-dockerhub-manual.yaml +++ b/.github/workflows/docker-push-containers-to-dockerhub-manual.yaml @@ -20,7 +20,7 @@ jobs: - name: Build docker image and push to DockerHub uses: senzing-factory/github-action-docker-buildx-build@v1 with: - build-options: "--push" + build-options: "-q --push" image-repository: senzing/${{ steps.repo-basename.outputs.repo }} image-tag: latest password: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }} diff --git a/.github/workflows/docker-push-containers-to-dockerhub.yaml b/.github/workflows/docker-push-containers-to-dockerhub.yaml index dcabe2a..3df6e8a 100644 --- a/.github/workflows/docker-push-containers-to-dockerhub.yaml +++ b/.github/workflows/docker-push-containers-to-dockerhub.yaml @@ -22,7 +22,7 @@ jobs: - name: Build docker image and push to DockerHub uses: senzing-factory/github-action-docker-buildx-build@v1 with: - build-options: "--push" + build-options: "-q --push" image-repository: senzing/${{ steps.repo-basename.outputs.repo }} image-tag: ${{ github.ref_name }} password: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }}