Drone is a Container-Native, Continuous Delivery Platform
Go to file
Brad Rydzewski e5dc5c73c4 support for skipped or blocked pipelines if validation fails 2020-08-26 15:11:02 -04:00
.github
cmd
core
docker Update alpine base image to v3.11 2020-01-26 16:31:47 +11:00
handler
livelog
logger add build tags 2019-02-27 23:07:13 -08:00
metric
mock
operator
plugin
pubsub
scheduler
scripts
server check organization membership when authorizing orgsecret access 2019-09-29 13:51:56 -07:00
service
session
store
trigger
version
web
.dockerignore
.drone.jsonnet
.drone.script
.drone.yml
.gitignore
BUILDING
BUILDING_OSS
CHANGELOG.md
LICENSE
NOTICE
Taskfile.yml
go.mod
go.sum

.github/readme.md

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.