2021-09-11 10:40:31 +00:00
---
title: drone-docker
---
2021-09-11 11:27:00 +00:00
[![Build Status ](https://img.shields.io/drone/build/thegeeklab/drone-docker?logo=drone&server=https%3A%2F%2Fdrone.thegeeklab.de )](https://drone.thegeeklab.de/thegeeklab/drone-docker)
[![Docker Hub ](https://img.shields.io/badge/dockerhub-latest-blue.svg?logo=docker&logoColor=white )](https://hub.docker.com/r/thegeeklab/drone-docker)
[![Quay.io ](https://img.shields.io/badge/quay-latest-blue.svg?logo=docker&logoColor=white )](https://quay.io/repository/thegeeklab/drone-docker)
[![GitHub contributors ](https://img.shields.io/github/contributors/thegeeklab/drone-docker )](https://github.com/thegeeklab/drone-docker/graphs/contributors)
[![Source: GitHub ](https://img.shields.io/badge/source-github-blue.svg?logo=github&logoColor=white )](https://github.com/thegeeklab/drone-docker)
[![License: MIT ](https://img.shields.io/github/license/thegeeklab/drone-docker )](https://github.com/thegeeklab/drone-docker/blob/main/LICENSE)
2021-09-11 19:30:19 +00:00
Drone plugin to build and publish multiarch Docker images.
2021-09-11 10:40:31 +00:00
<!-- prettier - ignore - start -->
<!-- spellchecker - disable -->
{{< toc > }}
<!-- spellchecker - enable -->
<!-- prettier - ignore - end -->
2021-09-11 11:32:55 +00:00
## Versioning
2021-09-11 11:27:00 +00:00
2022-01-12 09:08:16 +00:00
The tags follow the major version of Docker, e.g. `19` , the minor and patch part reflects the "version" of the plugin. A full example would be `19.6.5` . Minor versions may introduce breaking changes, while patch versions may be considered non-breaking.
2021-09-11 11:27:00 +00:00
2021-09-11 10:40:31 +00:00
## Build
Build the binary with the following command:
```Shell
export GOOS=linux
export GOARCH=amd64
export CGO_ENABLED=0
export GO111MODULE=on
2022-04-24 20:33:30 +00:00
go build -v -a -tags netgo -o dist/drone-docker ./cmd/drone-docker/
2021-09-11 10:40:31 +00:00
```
Build the Docker image with the following command:
```Shell
docker build --file docker/Dockerfile.amd64 --tag thegeeklab/drone-docker .
```
## Usage
2021-09-11 11:11:35 +00:00
{{< hint warning > }}
2021-09-11 10:40:31 +00:00
**Note**\
Be aware that the this plugin requires privileged capabilities, otherwise the
integrated Docker daemon is not able to start.
{{< / hint > }}
```Shell
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 --dry-run
```
2021-09-11 11:32:55 +00:00
### Parameters
2021-09-11 10:40:31 +00:00
dry_run
: disables docker push
drone_remote_url
: sets the git remote url
mirror
: sets a registry mirror to pull images
storage_driver
: sets the docker daemon storage driver
2021-09-11 11:20:16 +00:00
storage_path
: sets the docker daemon storage path (default `/var/lib/docker` )
2021-09-11 10:40:31 +00:00
bip
: allows the docker daemon to bride ip address
mtu
: sets docker daemon custom mtu setting
custom_dns
: sets custom docker daemon dns server
custom_dns_search
: sets custom docker daemon dns search domain
insecure
: allows the docker daemon to use insecure registries
ipv6
: enables docker daemon ipv6 support
experimental
: enables docker daemon experimental mode
debug "docker_launch_debug
: enables verbose debug mode for the docker daemon
daemon_off
: disables the startup of the docker daemon
2021-09-11 11:20:16 +00:00
dockerfile
: sets dockerfile to use for the image build (default `./Dockerfile` )
2021-09-11 10:40:31 +00:00
2021-09-11 11:20:16 +00:00
context
: sets the path of the build context to use (default `./` )
2021-09-11 10:40:31 +00:00
2021-09-11 11:20:16 +00:00
tags
: sets repository tags to use for the image; tags can also be loaded from a `.tags` file (default `latest` )
2021-09-11 10:40:31 +00:00
auto_tag
: generates tag names automatically based on git branch and git tag
auto_tag_suffix
: generates tag names with the given suffix
build_args
: sets custom build arguments for the build
build_args_from_env
: forwards environment variables as custom arguments to the build
quiet
: enables suppression of the build output
target
: sets the build target to use
cache_from
: sets images to consider as cache sources
2021-09-11 11:20:16 +00:00
pull_image
: enforces to pull base image at build time (default `true` )
2021-09-11 10:40:31 +00:00
compress
: enables compression og the build context using gzip
repo
: sets repository name for the image
2021-09-11 11:20:16 +00:00
registry
: sets docker registry to authenticate with (default `https://index.docker.io/v1/` )
2021-09-11 10:40:31 +00:00
username
: sets username to authenticates with
password
: sets password to authenticates with
email
: sets email address to authenticates with
config
: sets content of the docker daemon json config
2021-09-11 11:20:16 +00:00
purge
: enables cleanup of the docker environment at the end of a build (default `true` )
2021-09-11 10:40:31 +00:00
no_cache
: disables the usage of cached intermediate containers
add_host
: sets additional host:ip mapping