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 c7b4b0c4f7
Some checks failed
continuous-integration/drone/push Build is failing
Merge remote-tracking branch 'upstream/master' ...
...into edge-dind
2022-04-01 20:34:31 +02:00
.github Properly configure permissions for protected branches 2019-01-22 10:52:39 +01:00
cmd (DRON-232) enable build-kit for secrets consumption 2022-02-16 11:22:07 +00:00
docker Merge remote-tracking branch 'upstream/master' ... 2022-04-01 20:34:31 +02:00
docs (DRON-237) cards add link to image repo, minor cleanup 2022-02-23 12:28:40 +00:00
scripts/windows Fix ECR & GCR docker publish on windows (#352) 2022-01-12 22:32:57 +05:30
.drone.jsonnet jsonnet: thow out {arm,gcr,acr,heroku} stuff 2021-03-16 22:11:33 +01:00
.drone.yml Merge remote-tracking branch 'upstream/master' ... 2022-04-01 20:34:31 +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 Merge remote-tracking branch 'upstream/master' ... 2022-04-01 20:34:31 +02:00
LICENSE Initial commit 2015-05-14 16:58:41 -07:00
README.md bump to version 20.10.9: 2021-11-02 11:23:08 +00:00
card.go (DRON-237) cards add link to image repo, minor cleanup 2022-02-23 12:28:40 +00: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 remote-tracking branch 'upstream/master' ... 2022-04-01 20:34:31 +02:00
docker_test.go ability to disable purge 2017-11-09 13:28:19 -08:00
go.mod (DRON-237) cards add link to image repo, minor cleanup 2022-02-23 12:28:40 +00:00
go.sum (DRON-237) cards add link to image repo, minor cleanup 2022-02-23 12:28:40 +00: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

Release procedure

Run the changelog generator.

docker run -it --rm -v "$(pwd)":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator -u drone-plugins -p drone-docker -t <secret github token>

You can generate a token by logging into your GitHub account and going to Settings -> Personal access tokens.

Next we tag the PR's with the fixes or enhancements labels. If the PR does not fufil the requirements, do not add a label.

Run the changelog generator again with the future version according to semver.

docker run -it --rm -v "$(pwd)":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator -u drone-plugins -p drone-docker -t <secret token> --future-release v1.0.0

Create your pull request for the release. Get it merged then tag the release.