Skip to content
/ drone Public
forked from harness/harness

Drone is a Container-Native, Continuous Delivery Platform

License

Notifications You must be signed in to change notification settings

weekndCN/drone

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

Folders and files

NameName
Last commit message
Last commit date

Latest commit

276f984 · Nov 20, 2020
Feb 26, 2020
Nov 20, 2020
Nov 9, 2020
Nov 11, 2020
Nov 9, 2020
Sep 18, 2019
Feb 28, 2019
Feb 7, 2020
Oct 29, 2020
Jun 8, 2020
Nov 20, 2020
Feb 28, 2019
Jan 9, 2020
Aug 7, 2019
Sep 29, 2019
Oct 20, 2020
Jun 6, 2019
Nov 9, 2020
Nov 9, 2020
Oct 29, 2020
Feb 19, 2019
May 26, 2016
Jun 8, 2020
Nov 11, 2020
Feb 19, 2019
Sep 16, 2019
Nov 20, 2020
May 21, 2019
Feb 20, 2019
Mar 13, 2020
Nov 20, 2020
Nov 20, 2020

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:

name: default

kind: pipeline
type: docker

steps:
- name: backend
  image: golang
  commands:
    - go get
    - go build
    - go test

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

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

- name: notify
  image: plugins/slack
  settings:
    channel: developers
    username: drone

Documentation and Other Links:

Please note the official Docker images run the Drone Enterprise distribution. If you would like to run the Community Edition you can build from source by following the instructions in BUILDING_OSS.

About

Drone is a Container-Native, Continuous Delivery Platform

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 99.0%
  • Other 1.0%