2017-09-29 01:49:56 +00:00
Drone is a Continuous Delivery system built on container technology. Drone uses a simple YAML configuration file, a superset of docker-compose, to define and execute Pipelines inside Docker containers.
2015-07-12 01:01:59 +00:00
2017-05-11 12:12:45 +00:00
< br / >
2015-07-10 00:01:03 +00:00
2017-05-11 12:12:45 +00:00
< img src = "https://github.com/drone/brand/blob/master/screenshots/screenshot_build_success.png" style = "max-width:100px;" / >
2017-02-01 02:28:24 +00:00
2017-05-11 12:12:45 +00:00
Sample Pipeline Configuration:
2015-08-18 20:57:40 +00:00
2017-06-07 08:55:28 +00:00
```yaml
2017-05-11 12:12:45 +00:00
pipeline:
backend:
image: golang
commands:
- go get
- go build
- go test
frontend:
image: node:6
commands:
- npm install
- npm test
2017-05-11 12:18:08 +00:00
publish:
image: plugins/docker
repo: octocat/hello-world
tags: [ 1, 1.1, latest ]
registry: index.docker.io
2017-05-11 12:12:45 +00:00
notify:
image: plugins/slack
channel: developers
username: drone
2015-08-18 20:57:40 +00:00
```
2015-08-18 17:28:07 +00:00
2017-05-11 12:12:45 +00:00
Documentation and Other Links:
2015-09-01 14:08:42 +00:00
2017-05-11 12:12:45 +00:00
* Setup Documentation [docs.drone.io/installation ](http://docs.drone.io/installation/ )
* Usage Documentation [docs.drone.io/getting-started ](http://docs.drone.io/getting-started/ )
2017-05-11 12:18:08 +00:00
* Plugin Index [plugins.drone.io ](http://plugins.drone.io/ )
2017-05-11 12:12:45 +00:00
* Getting Help [docs.drone.io/getting-help ](http://docs.drone.io/getting-help/ )