Eoin McAfee 0d95c459da
fixing a small typo in the compose readme. (#3077)
* fixing a small typo in the compose readme. ClientId is repeated, should be client secret
2021-05-04 10:59:47 +01:00
2021-03-16 15:50:34 +00:00
2019-02-27 23:07:13 -08:00
2021-01-20 16:29:40 -05:00
2020-10-29 09:19:22 -04:00
2019-02-27 23:07:13 -08:00
2020-12-22 10:44:04 -05:00
2019-02-19 15:56:41 -08:00
2016-05-26 11:08:48 -07:00
2019-02-19 15:56:41 -08:00
2019-09-16 17:48:57 +09:00
2021-01-20 16:29:40 -05:00
2021-03-31 19:34:55 -04:00
2021-03-31 19:34:55 -04:00
2019-05-21 11:45:42 -07:00
2019-02-19 19:55:28 -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:

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.

Description