46 lines
2.0 KiB
Markdown
46 lines
2.0 KiB
Markdown
# drone-docker
|
|
|
|
[](http://cloud.drone.io/drone-plugins/drone-docker)
|
|
[](https://gitter.im/drone/drone)
|
|
[](https://discourse.drone.io)
|
|
[](https://stackoverflow.com/questions/tagged/drone.io)
|
|
[](https://microbadger.com/images/plugins/docker "Get your own image badge on microbadger.com")
|
|
[](https://microbadger.com/images/plugins/gcr "Get your own image badge on microbadger.com")
|
|
[](https://microbadger.com/images/plugins/ecr "Get your own image badge on microbadger.com")
|
|
[](https://microbadger.com/images/plugins/heroku "Get your own image badge on microbadger.com")
|
|
[](http://godoc.org/github.com/drone-plugins/drone-docker)
|
|
[](https://goreportcard.com/report/github.com/drone-plugins/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
|
|
```
|