2018-01-18 09:30:41 -08:00
2018-01-18 10:33:41 -06:00
2017-10-05 14:02:23 -07:00
2018-01-18 09:26:28 -08:00
2017-10-05 14:17:27 -07:00
2018-01-12 22:53:44 -06:00
2018-01-10 13:31:07 -08:00
2016-05-26 11:08:48 -07:00
2018-01-10 13:31:07 -08:00
2017-10-21 10:29:14 -07:00
2017-09-11 16:03:11 -07:00
2017-09-27 19:01:52 -07:00
2017-09-27 19:01:52 -07:00
2017-09-27 19:01:52 -07:00
2014-02-07 03:10:01 -07:00
2017-09-29 09:49:56 +08: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.


Sample Pipeline Configuration:

pipeline:
  backend:
    image: golang
    commands:
      - go get
      - go build
      - go test

  frontend:
    image: node:6
    commands:
      - npm install
      - npm test

  publish:
    image: plugins/docker
    repo: octocat/hello-world
    tags: [ 1, 1.1, latest ]
    registry: index.docker.io

  notify:
    image: plugins/slack
    channel: developers
    username: drone

Documentation and Other Links:

Description