GitHub Action to set up Docker Buildx
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Go to file
Justin Cormack 4ae16d33b3
Merge pull request #8 from crazy-max/codecov
Enable Codecov and upload coverage
5 years ago
.github Enable Codecov and upload coverage 5 years ago
__tests__ Add container based dev flow (#4) 5 years ago
dist support for docker driver 5 years ago
hack Add container based dev flow (#4) 5 years ago
src support for docker driver 5 years ago
.editorconfig Initial commit (docker/build-push-action#87) 5 years ago
.gitattributes Initial commit (docker/build-push-action#87) 5 years ago
.gitignore Initial commit (docker/build-push-action#87) 5 years ago
.prettierrc.json Initial commit (docker/build-push-action#87) 5 years ago
CHANGELOG.md Update CHANGELOG 5 years ago
Dockerfile dockerfile: fix validate-yarn target 5 years ago
LICENSE Initial commit (docker/build-push-action#87) 5 years ago
README.md Enable Codecov and upload coverage 5 years ago
action.yml Initial commit (docker/build-push-action#87) 5 years ago
docker-bake.hcl Add container based dev flow (#4) 5 years ago
jest.config.js Initial commit (docker/build-push-action#87) 5 years ago
package.json Bump @actions/core from 1.2.4 to 1.2.5 5 years ago
tsconfig.json Initial commit (docker/build-push-action#87) 5 years ago
yarn.lock Bump @actions/core from 1.2.4 to 1.2.5 5 years ago

README.md

GitHub release GitHub marketplace CI workflow Test workflow Codecov

About

GitHub Action to set up Docker Buildx.

💡 See also our build-push and setup-qemu actions

Screenshot


Usage

Quick start

name: ci

on:
  push:

jobs:
  buildx:
    runs-on: ubuntu-latest
    steps:
      -
        name: Checkout
        uses: actions/checkout@v2
      -
        name: Set up Docker Buildx
        id: buildx
        uses: docker/setup-buildx-action@v1
        with:
          version: latest
      -
        name: Builder instance name
        run: echo ${{ steps.buildx.outputs.name }}
      -
        name: Available platforms
        run: echo ${{ steps.buildx.outputs.platforms }}

With QEMU

If you want support for more platforms you can use our setup-qemu action:

name: ci

on:
  push:

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: all
      -
        name: Set up Docker Buildx
        id: buildx
        uses: docker/setup-buildx-action@v1
        with:
          version: latest
      -
        name: Available platforms
        run: echo ${{ steps.buildx.outputs.platforms }}

Customizing

inputs

Following inputs can be used as step.with keys

Name Type Description
version String Buildx version. (e.g. v0.3.0, latest)
driver String Sets the builder driver to be used (default docker-container)
driver-opt String Passes additional driver-specific options
buildkitd-flags String Flags for buildkitd daemon
install Bool Sets up docker build command as an alias to docker buildx (default false)
use Bool Switch to this builder instance (default true)

outputs

Following outputs are available

Name Type Description
name String Builder instance name
platforms String Available platforms (comma separated)

environment variables

The following official docker environment variables are supported:

Name Type Default Description
DOCKER_CONFIG String ~/.docker The location of your client configuration files

Keep up-to-date with GitHub Dependabot

Since Dependabot has native GitHub Actions support, to enable it on your GitHub repo all you need to do is add the .github/dependabot.yml file:

version: 2
updates:
  # Maintain dependencies for GitHub Actions
  - package-ecosystem: "github-actions"
    directory: "/"
    schedule:
      interval: "daily"

Limitation

This action is only available for Linux virtual environments.