harness-drone/.github
2019-04-13 01:58:26 -07:00
..
code_of_conduct.md wip enable CE 2019-02-20 10:34:26 -08:00
issue_template.md Update issue_template.md [ci skip] 2017-09-06 15:21:15 -07:00
pull_request_template.md refact yaml operations to yaml package 2016-04-19 13:02:28 -07:00
readme.md closes issue #2534 [CI SKIP] 2019-04-13 01:58:26 -07: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: