No description
Find a file
2017-06-26 14:47:32 -04:00
.github fixes #1523 to ensure json-file driver (#2083) 2017-06-22 15:11:05 -04:00
cache
client
drone Allow specifying limits for pipeline steps from server config (#2085) 2017-06-24 08:16:16 -04:00
model Merge remote-tracking branch 'origin' 2017-06-26 14:47:32 -04:00
plugins update vendored files 2017-05-12 12:30:19 +02:00
remote add missing Email from Hook Event in gitea. (#2080) 2017-06-21 06:53:47 +02:00
router ignore empty orgs value 2017-05-30 17:43:34 +02:00
server Allow specifying limits for pipeline steps from server config (#2085) 2017-06-24 08:16:16 -04:00
shared
store doh. fix migration for sqlite 2017-06-01 14:47:06 +02:00
vendor fixes #1523 to ensure json-file driver (#2083) 2017-06-22 15:11:05 -04:00
version fixes #1523 to ensure json-file driver (#2083) 2017-06-22 15:11:05 -04:00
.dockerignore
.drone.sh remove CLI from build process 2017-05-22 16:19:13 +02:00
.drone.yml fixes #1523 to ensure json-file driver (#2083) 2017-06-22 15:11:05 -04:00
.gitignore remove generated migration code from gitignore 2017-05-13 10:08:39 +02:00
Dockerfile store lets encrypt in same dir as sqlite 2017-04-29 19:46:36 +02:00
Dockerfile.arm64
Dockerfile.armhf
Dockerfile.windows
LICENSE
README.md Update README.md [ci skip] 2017-05-11 14:18:08 +02: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:

pipeline:
  backend:
    image: golang
    commands:
      - go get
      - go build
      - go test

  frontend:
    image: node:6
    commands:
      - npm install
      - npm test

  publish:
    image: plugins/docker
    repo: octocat/hello-world
    tags: [ 1, 1.1, latest ]
    registry: index.docker.io

  notify:
    image: plugins/slack
    channel: developers
    username: drone

Documentation and Other Links: