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

prabdeb/drone

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

Folders and files

NameName
Last commit message
Last commit date
Sep 6, 2017
May 2, 2018
Mar 21, 2018
May 2, 2018
Apr 30, 2018
Apr 1, 2018
Apr 6, 2018
Mar 21, 2018
May 2, 2018
Apr 1, 2018
Mar 29, 2018
May 26, 2016
Jul 18, 2017
Mar 29, 2018
Apr 27, 2018
Oct 21, 2017
Sep 11, 2017
Sep 28, 2017
Feb 1, 2018
Sep 28, 2017
Sep 28, 2017
Feb 1, 2018
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%