diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2021-06-05 20:41:12 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2021-06-05 20:41:12 +0530 |
commit | 24b981b249594e4db791cd8ad844f6f3e40cd2d2 (patch) | |
tree | 6fd6153789e7b15ddd7de04085b6b0e950e4255b /.github | |
parent | 2fb00a4f4e555c7e07927c8bdf7be858152c2ae6 (diff) |
added automatic Docker image workflow
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/Docker-Build.yaml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/.github/workflows/Docker-Build.yaml b/.github/workflows/Docker-Build.yaml new file mode 100644 index 0000000..a03629c --- /dev/null +++ b/.github/workflows/Docker-Build.yaml @@ -0,0 +1,33 @@ +name: Docker Build + +on: + push: + branches: [ master ] + +jobs: + buildx: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Set Up QEMU + uses: docker/setup-qemu-action@v1 + with: + platforms: amd64,arm64,arm + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + - name: Login to DockerHub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Build and Push + id: docker_build + uses: docker/build-push-action@v2 + with: + context: . + platforms: linux/amd64,linux/arm64,linux/arm/v6,linux/arm/v7 + push: true + tags: user/app:latest + - name: Image Digest + run: echo ${{ steps.docker_build.outputs.digest}} |