Skip to content
This repository has been archived by the owner on Jul 27, 2023. It is now read-only.

Latest commit

 

History

History
49 lines (37 loc) · 1.35 KB

README.md

File metadata and controls

49 lines (37 loc) · 1.35 KB

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: