No description
Find a file
2019-02-19 15:56:41 -08:00
.github squash and merge local branch 2019-02-19 15:56:41 -08:00
cmd squash and merge local branch 2019-02-19 15:56:41 -08:00
core squash and merge local branch 2019-02-19 15:56:41 -08:00
docker squash and merge local branch 2019-02-19 15:56:41 -08:00
handler squash and merge local branch 2019-02-19 15:56:41 -08:00
livelog squash and merge local branch 2019-02-19 15:56:41 -08:00
logger squash and merge local branch 2019-02-19 15:56:41 -08:00
metric squash and merge local branch 2019-02-19 15:56:41 -08:00
mock squash and merge local branch 2019-02-19 15:56:41 -08:00
operator squash and merge local branch 2019-02-19 15:56:41 -08:00
plugin squash and merge local branch 2019-02-19 15:56:41 -08:00
pubsub squash and merge local branch 2019-02-19 15:56:41 -08:00
scheduler squash and merge local branch 2019-02-19 15:56:41 -08:00
server squash and merge local branch 2019-02-19 15:56:41 -08:00
service squash and merge local branch 2019-02-19 15:56:41 -08:00
session squash and merge local branch 2019-02-19 15:56:41 -08:00
store squash and merge local branch 2019-02-19 15:56:41 -08:00
trigger squash and merge local branch 2019-02-19 15:56:41 -08:00
version squash and merge local branch 2019-02-19 15:56:41 -08: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.jsonnet squash and merge local branch 2019-02-19 15:56:41 -08:00
.drone.yml squash and merge local branch 2019-02-19 15:56:41 -08:00
.gitignore squash and merge local branch 2019-02-19 15:56:41 -08:00
BUILDING squash and merge local branch 2019-02-19 15:56:41 -08:00
go.mod squash and merge local branch 2019-02-19 15:56:41 -08:00
go.sum squash and merge local branch 2019-02-19 15:56:41 -08:00
LICENSE squash and merge local branch 2019-02-19 15:56:41 -08:00
Taskfile.yml squash and merge local branch 2019-02-19 15:56:41 -08: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: