Drone plugin for publishing Docker images using Docker-in-Docker (personal "fork" with focus on getting latest docker) https://hub.docker.com/r/immawanderer/drone-docker
Go to file
surtur 984e78e4c7
All checks were successful
continuous-integration/drone/push Build is passing
chore: bump dind to 20.10.10
2021-11-04 22:24:32 +01:00
.github Properly configure permissions for protected branches 2019-01-22 10:52:39 +01:00
cmd bump dind to 20.10.9 2021-10-22 14:34:35 +02:00
docker chore: bump dind to 20.10.10 2021-11-04 22:24:32 +01:00
.drone.jsonnet jsonnet: thow out {arm,gcr,acr,heroku} stuff 2021-03-16 22:11:33 +01:00
.drone.yml bump dind to 20.10.9 2021-10-22 14:34:35 +02:00
.github_changelog_generator bump dind to 20.10.9 2021-10-22 14:34:35 +02:00
.gitignore replace govendor with dep 2017-10-30 23:05:06 -07:00
CHANGELOG.md bump dind to 20.10.9 2021-10-22 14:34:35 +02:00
LICENSE Initial commit 2015-05-14 16:58:41 -07:00
README.md Clarify use of Docker-in-Docker [CI SKIP] 2020-05-28 13:22:31 -04:00
daemon.go update config.json messaging 2020-03-24 13:49:10 -07:00
daemon_win.go fix docker home path on windows 2020-03-24 14:34:54 -07:00
docker.go bump dind to 20.10.9 2021-10-22 14:34:35 +02:00
docker_test.go ability to disable purge 2017-11-09 13:28:19 -08:00
go.mod update urfave/cli to 1.22.2 2020-01-02 16:32:11 -05:00
go.sum update urfave/cli to 1.22.2 2020-01-02 16:32:11 -05:00
pipeline.libsonnet bump dind to 20.10.9 2021-10-22 14:34:35 +02:00
tags.go semver parsing fails pipeline step 2020-05-19 13:26:13 -04:00
tags_test.go semver parsing fails pipeline step 2020-05-19 13:26:13 -04:00

drone-docker

Build Status Gitter chat Join the discussion at https://discourse.drone.io Drone questions at https://stackoverflow.com Go Doc Go Report

Drone plugin uses Docker-in-Docker to build and publish Docker images to a container registry. For the usage information and a listing of the available options please take a look at the docs.

Build

Build the binaries with the following commands:

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

go build -v -a -tags netgo -o release/linux/amd64/drone-docker ./cmd/drone-docker
go build -v -a -tags netgo -o release/linux/amd64/drone-gcr ./cmd/drone-gcr
go build -v -a -tags netgo -o release/linux/amd64/drone-ecr ./cmd/drone-ecr
go build -v -a -tags netgo -o release/linux/amd64/drone-acr ./cmd/drone-acr
go build -v -a -tags netgo -o release/linux/amd64/drone-heroku ./cmd/drone-heroku

Docker

Build the Docker images with the following commands:

docker build \
  --label org.label-schema.build-date=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \
  --label org.label-schema.vcs-ref=$(git rev-parse --short HEAD) \
  --file docker/docker/Dockerfile.linux.amd64 --tag plugins/docker .

docker build \
  --label org.label-schema.build-date=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \
  --label org.label-schema.vcs-ref=$(git rev-parse --short HEAD) \
  --file docker/gcr/Dockerfile.linux.amd64 --tag plugins/gcr .

docker build \
  --label org.label-schema.build-date=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \
  --label org.label-schema.vcs-ref=$(git rev-parse --short HEAD) \
  --file docker/ecr/Dockerfile.linux.amd64 --tag plugins/ecr .

docker build \
  --label org.label-schema.build-date=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \
  --label org.label-schema.vcs-ref=$(git rev-parse --short HEAD) \
  --file docker/acr/Dockerfile.linux.amd64 --tag plugins/acr .

docker build \
  --label org.label-schema.build-date=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \
  --label org.label-schema.vcs-ref=$(git rev-parse --short HEAD) \
  --file docker/heroku/Dockerfile.linux.amd64 --tag plugins/heroku .

Usage

Notice: Be aware that the Docker plugin currently 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=d8dbe4d94f15fe89232e0402c6e8a0ddf21af3ab \
  -v $(pwd):$(pwd) \
  -w $(pwd) \
  --privileged \
  plugins/docker --dry-run