Drone is a Container-Native, Continuous Delivery Platform
Go to file
Eoin McAfee 9b42d5ddae
remove deprecated steps
2021-06-22 16:33:40 +01:00
.github
cmd/drone-server
core
docker
handler
livelog livelog: remove potential race conditions from tests 2019-09-18 00:40:40 -07:00
logger
metric
mock
operator
plugin
pubsub
scheduler
scripts
server
service
session
store
trigger
version
web
.dockerignore
.drone.yml
.gitignore
BUILDING
BUILDING_OSS fix OSS build for v1.4.0. 2019-09-16 17:48:57 +09:00
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.