No description
Find a file
2021-06-23 14:52:26 +01:00
.github
cmd/drone-server
core (feat) adding depends_on, image and detached fields to step 2021-06-22 13:57:04 +01:00
docker
handler Merge pull request #3088 from phil-davis/typo-fixes 2021-06-22 10:20:17 +01:00
livelog
logger
metric
mock
operator
plugin Merge pull request #3082 from tkushnir/add-build-debug 2021-06-22 10:23:30 +01:00
pubsub
scheduler
scripts (feat) adding depends_on, image and detached fields to step 2021-06-22 13:57:04 +01:00
server
service Merge pull request #3088 from phil-davis/typo-fixes 2021-06-22 10:20:17 +01:00
session
store (feat) adding depends_on, image and detached fields to step 2021-06-22 13:57:04 +01:00
trigger Merge pull request #3088 from phil-davis/typo-fixes 2021-06-22 10:20:17 +01:00
version
web
.dockerignore
.drone.yml
.gitignore
BUILDING remove deprecated steps 2021-06-22 16:33:40 +01:00
BUILDING_OSS
CHANGELOG.md
go.mod Merge pull request #3084 from Al2Klimov/jsonnet-0.17 2021-06-22 11:22:45 +02:00
go.sum Merge pull request #3084 from Al2Klimov/jsonnet-0.17 2021-06-22 11:22:45 +02:00
LICENSE
NOTICE
Taskfile.yml

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.