Go to file
renovate[bot] 421de00a8e
fix(deps): update module github.com/sirupsen/logrus to v1.8.1 (#18)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-03-10 08:16:36 +01:00
.chglog ci: auto-generate changelog (#10) 2021-02-15 10:46:58 +01:00
.github fix branch in github settings file 2021-01-17 20:41:08 +01:00
cmd/drone-docker-buildx fix redefined flags 2021-01-11 22:38:17 +01:00
docker chore(deps): update docker digests 2021-03-03 03:47:04 +00:00
plugin append users build-args to the default slice 2021-01-22 12:57:32 +01:00
.drone.jsonnet rebuild drone config (#11) 2021-02-15 20:31:22 +01:00
.drone.yml rebuild drone config (#11) 2021-02-15 20:31:22 +01:00
.gitignore ci: auto-generate changelog (#10) 2021-02-15 10:46:58 +01:00
CONTRIBUTING.md add missing CONTRIBUTING.md file 2021-01-17 20:39:01 +01:00
LICENSE fork: initial release 2021-01-10 23:47:55 +01:00
README.md link back to the original repo 2021-01-22 12:40:09 +01:00
go.mod fix(deps): update module github.com/sirupsen/logrus to v1.8.1 (#18) 2021-03-10 08:16:36 +01:00
go.sum fix(deps): update module github.com/sirupsen/logrus to v1.8.1 (#18) 2021-03-10 08:16:36 +01:00
renovate.json fork: initial release 2021-01-10 23:47:55 +01:00

README.md

drone-docker-buildx

Drone plugin to build multiarch Docker images with buildx

Build Status Docker Hub Quay.io Go Report Card GitHub contributors Source: GitHub License: MIT

Drone plugin to build multiarch Docker images with buildx. This plugin is a fork of drone-plugins/drone-docker.

Docker Tags

Tags are following the main Docker version e.g. 20.10, the second part is reflecting the plugin "version". A full example would be 20.10.5.

Build

Build the binary with the following command:

export GOOS=linux
export GOARCH=amd64
export CGO_ENABLED=0
export GO111MODULE=on

go build -v -a -tags netgo -o release/drone-docker-buildx

Build the Docker image with the following command:

docker build --file docker/Dockerfile.amd64 --tag thegeeklab/drone-docker-buildx .

Usage

Notice: Be aware that the tis plugin requires privileged capabilities, otherwise the integrated Docker daemon is not able to start.

docker run --rm \
  -e PLUGIN_TAG=latest \
  -e PLUGIN_REPO=octocat/hello-world \
  -e DRONE_COMMIT_SHA=00000000 \
  -v $(pwd):$(pwd) \
  -w $(pwd) \
  --privileged \
  thegeeklab/drone-docker-buildx --dry-run

Contributors

Special thanks goes to all contributors. If you would like to contribute, please see the instructions.

License

This project is licensed under the MIT License - see the LICENSE file for details.