Brad Rydzewski 02df116424
Merge pull request #2600 from JordanSussman/master
feat(s3): allow user to specify s3 endpoint for non aws usage
2019-02-21 12:24:46 -08:00
2019-02-20 10:34:26 -08:00
2019-02-19 15:56:41 -08:00
2019-02-19 18:48:39 -08:00
2019-02-19 15:56:41 -08:00
2019-02-19 16:10:23 -08:00
2019-02-19 15:56:41 -08:00
2019-02-19 15:56:41 -08:00
2019-02-19 15:56:41 -08:00
2019-02-19 15:56:41 -08:00
2019-02-20 10:34:26 -08:00
2019-02-19 15:56:41 -08:00
2019-02-19 18:48:39 -08:00
2019-02-19 15:56:41 -08:00
2016-05-26 11:08:48 -07:00
2019-02-21 11:30:05 -08:00
2019-02-20 10:34:26 -08:00
2019-02-21 11:30:05 -08:00
2019-02-19 15:56:41 -08:00
2019-02-19 15:56:41 -08:00
2019-02-19 15:56:41 -08:00
2019-02-19 15:56:41 -08:00
2019-02-19 19:55:28 -08:00
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:

Description