drone-docker-buildx/README.md

39 lines
608 B
Markdown
Raw Normal View History

2015-05-15 01:58:41 +02:00
# drone-docker
Drone plugin for publishing Docker images
2015-05-15 07:12:50 +02:00
## Docker
Build the Docker container:
```sh
docker build --rm=true -t plugins/drone-docker .
```
Build and Publish a Docker container
```sh
docker run -i --privileged -v $(pwd):/drone/src plugins/drone-docker <<EOF
{
2015-09-03 07:14:15 +02:00
"workspace": {
"path": "/drone/src"
2015-05-15 07:12:50 +02:00
},
2015-09-03 07:14:15 +02:00
"build" : {
"number": 1,
"head_commit": {
"sha": "9f2849d5",
"branch": "master",
"ref": "refs/heads/master"
}
2015-05-15 07:12:50 +02:00
},
"vargs": {
"username": "kevinbacon",
"password": "pa$$word",
2015-05-15 07:12:50 +02:00
"email": "foo@bar.com",
"repo": "foo/bar",
2015-05-15 09:09:56 +02:00
"storage_driver": "aufs"
2015-05-15 07:12:50 +02:00
}
}
EOF
```