Skip to content
/ drone Public
forked from harness/harness

Drone is a Continuous Delivery platform built on Docker, written in Go

License

Notifications You must be signed in to change notification settings

lmalvins/drone

This branch is 896 commits behind harness/harness:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

5e557bb · Feb 23, 2018
Sep 6, 2017
Feb 19, 2018
Feb 19, 2018
Feb 23, 2018
Feb 19, 2018
Feb 19, 2018
Feb 19, 2018
Feb 19, 2018
Feb 19, 2018
Jan 13, 2018
Feb 19, 2018
May 26, 2016
Jul 18, 2017
Jan 10, 2018
May 13, 2017
Oct 21, 2017
Sep 11, 2017
Sep 28, 2017
Sep 28, 2017
Sep 28, 2017
Sep 28, 2017
Sep 28, 2017
Feb 16, 2018
Sep 29, 2017

Repository files navigation

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:

About

Drone is a Continuous Delivery platform built on Docker, written in Go

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 99.7%
  • Other 0.3%