No description
Find a file
Eoin McAfee 0d750b1b9a
Merge pull request #3082 from tkushnir/add-build-debug
Add ctx.build.debug boolean
2021-06-22 10:23:30 +01:00
.github copy over standard contributing.md file [CI SKIP] 2021-02-04 14:43:51 -05:00
cmd/drone-server (feat) maximum open DB connections is configurable 2021-06-08 11:10:42 +01:00
core Fix various typos 2021-06-10 08:19:00 +05:45
docker fixing a small typo in the compose readme. (#3077) 2021-05-04 10:59:47 +01:00
handler Merge pull request #3088 from phil-davis/typo-fixes 2021-06-22 10:20:17 +01:00
livelog livelog: remove potential race conditions from tests 2019-09-18 00:40:40 -07:00
logger add build tags 2019-02-27 23:07:13 -08:00
metric update login / register screens 2021-05-13 13:51:22 -04:00
mock Task/update scm version (#3091) 2021-06-17 10:22:26 +01:00
operator Fix various typos 2021-06-10 08:19:00 +05:45
plugin Merge pull request #3082 from tkushnir/add-build-debug 2021-06-22 10:23:30 +01:00
pubsub add build tags 2019-02-27 23:07:13 -08:00
scheduler Fix various typos 2021-06-10 08:19:00 +05:45
scripts remove unused binaries from build process 2021-01-20 16:55:40 -05:00
server Limit graceful shutdown duration 2021-06-16 18:40:28 +02:00
service Merge pull request #3088 from phil-davis/typo-fixes 2021-06-22 10:20:17 +01:00
session Fix various typos 2021-06-10 08:19:00 +05:45
store Merge pull request #3088 from phil-davis/typo-fixes 2021-06-22 10:20:17 +01:00
trigger Merge pull request #3088 from phil-davis/typo-fixes 2021-06-22 10:20:17 +01:00
version version 2.0.1 release prep [CI SKIP] 2021-05-25 17:39:31 +01:00
web squash and merge local branch 2019-02-19 15:56:41 -08:00
.dockerignore update yaml for s3 upload 2016-05-26 11:08:48 -07:00
.drone.yml fix sql.ErrNoRows when watching for canceled builds 2020-06-08 15:36:08 -04:00
.gitignore (feat) maximum open DB connections is configurable 2021-06-08 11:10:42 +01:00
BUILDING squash and merge local branch 2019-02-19 15:56:41 -08:00
BUILDING_OSS fix OSS build for v1.4.0. 2019-09-16 17:48:57 +09:00
CHANGELOG.md Fix various typos 2021-06-10 08:19:00 +05:45
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 add rpc/v2 endpoint 2019-05-21 11:45:42 -07:00
NOTICE update notice [ci skip] 2019-02-19 19:55:28 -08:00
Taskfile.yml Tech QA Feedback & add support for organization level templates 2021-05-28 16:59:00 +01:00

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.