No description
Find a file
2017-07-24 19:15:25 -04:00
.github
cmd implement quic server 2017-07-24 19:15:25 -04:00
model refresh repo info on activation 2017-07-21 11:53:11 -04:00
plugins removed unused and broken packages 2017-07-24 13:23:22 -04:00
remote Added integration for coding.net 2017-07-22 17:12:09 +08:00
router serve logs with sse; update acme pkg 2017-07-24 15:57:07 -04:00
server serve logs with sse; update acme pkg 2017-07-24 15:57:07 -04:00
shared
store read user and log sql queries from file 2017-07-20 16:34:52 -04:00
vendor implement quic server 2017-07-24 19:15:25 -04:00
version bump version [ci skip] 2017-07-20 14:32:44 -04:00
.dockerignore
.drone.sh Merge pull request #2121 from bradrydzewski/master 2017-07-18 16:12:59 -04:00
.drone.yml bump version [ci skip] 2017-07-20 14:32:44 -04:00
.gitignore
Dockerfile
Dockerfile.agent build agent with CGO disabled [ci skip] 2017-06-29 20:38:43 -04:00
Dockerfile.agent.linux.arm publish arm32 and arm64 agent images 2017-07-18 14:43:37 -04:00
Dockerfile.agent.linux.arm64 publish arm32 and arm64 agent images 2017-07-18 14:43:37 -04:00
LICENSE
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:

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: