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
Brad Rydzewski e4bc243c93 replace govendor with dep 2017-10-30 23:05:06 -07:00
.github Update issue_template.md [ci skip] 2017-09-05 09:09:38 -07:00
cmd replace govendor with dep 2017-10-30 23:05:06 -07:00
docker replace govendor with dep 2017-10-30 23:05:06 -07:00
.drone.sh replace govendor with dep 2017-10-30 23:05:06 -07:00
.drone.yml replace govendor with dep 2017-10-30 23:05:06 -07:00
.gitignore replace govendor with dep 2017-10-30 23:05:06 -07:00
Gopkg.lock replace govendor with dep 2017-10-30 23:05:06 -07:00
Gopkg.toml 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 update readme 2017-08-27 12:29:08 -07:00
docker.go add build_args_from_env parameter 2017-08-27 16:28:58 -07:00

drone-docker

Drone plugin to build and publish Docker images to a container registry.

Build

Build the binary with the following commands:

sh .drone.sh

Docker

Build the Docker image with the following commands:

docker build --rm=true -f docker/Dockerfile -t plugins/docker .

Usage

Execute from the working directory:

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