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 3bc2768d6f
jsonnet: thow out {arm,gcr,acr,heroku} stuff
2021-03-16 22:11:33 +01:00
.github Properly configure permissions for protected branches 2019-01-22 10:52:39 +01:00
cmd Add support for automatic opencontainer labels 2021-01-20 18:14:27 +00:00
docker load the patched seccomp profile only on arm 2021-01-17 18:40:36 +01:00
.drone.jsonnet jsonnet: thow out {arm,gcr,acr,heroku} stuff 2021-03-16 22:11:33 +01:00
.drone.yml ci: edit .drone.yml to only build for linux-amd64 2021-03-16 22:11:33 +01:00
.gitignore replace govendor with dep 2017-10-30 23:05:06 -07: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 Merge pull request #313 from codrut-fc/opencontainer-labels 2021-03-01 20:52:08 -05: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 Fix auto_tag for manifests 2019-03-27 13:39:24 +01: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