No description
Find a file
2021-05-19 13:44:58 +01:00
.github
cmd/drone-server support optional convert plugin cache size 2021-05-14 14:06:47 -04:00
core update login / register screens 2021-05-13 13:51:22 -04:00
docker
handler update login / register screens 2021-05-13 13:51:22 -04:00
livelog
logger
metric update login / register screens 2021-05-13 13:51:22 -04:00
mock update login / register screens 2021-05-13 13:51:22 -04:00
operator
plugin support optional convert plugin cache size 2021-05-14 14:06:47 -04:00
pubsub
scheduler
scripts
server
service
session
store add store repository for template queries 2021-05-19 13:44:58 +01:00
trigger
version
web
.dockerignore
.drone.yml
.gitignore
BUILDING
BUILDING_OSS
CHANGELOG.md
go.mod update login / register screens 2021-05-13 13:51:22 -04:00
go.sum update login / register screens 2021-05-13 13:51:22 -04: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.