Go to file
Danny Krainas 0c212c225f use dockerd data-root option 2017-10-25 13:14:26 -04:00
.github Update issue_template.md [ci skip] 2017-09-05 09:09:38 -07:00
cmd Change possible password fields 2017-08-29 16:52:33 -04:00
docker enable gcr and heroku plugins 2017-08-27 12:27:28 -07:00
vendor Vendor urfav/cli from bradrydzewski/cli 2017-04-10 10:34:47 -05:00
.drone.sh enable gcr and heroku plugins 2017-08-27 12:27:28 -07:00
.drone.yml enable gcr and heroku plugins 2017-08-27 12:27:28 -07:00
.gitignore enable gcr and heroku plugins 2017-08-27 12:27:28 -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 use dockerd data-root option 2017-10-25 13:14:26 -04:00

README.md

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