Vytautas Maciulskis 6e338b4a8b DRONE_REPOSITORY_TRUSTED env variable added:
This environment variable will allow to make repositories trusted, when enabling them in drone by default
It is recommended to use `DRONE_REPOSITORY_TRUSTED=true` only in scenarios, where you are running drone master and drone agents for single trusted organization
2019-09-12 09:46:07 +03:00
2019-09-10 18:52:08 -07:00
2019-09-03 19:25:18 -07:00
2019-08-22 13:21:17 -07:00
2019-03-13 14:47:47 -07:00
2019-02-27 23:07:13 -08:00
2019-05-14 17:28:15 +02:00
2019-09-03 15:05:53 -07:00
2019-09-03 15:05:53 -07:00
2019-02-27 23:07:13 -08:00
2019-07-18 18:31:10 -07:00
2019-09-03 21:11:49 -07:00
2019-09-03 19:25:18 -07:00
2019-02-19 15:56:41 -08:00
2016-05-26 11:08:48 -07:00
2019-04-16 09:27:15 +08:00
2019-08-06 22:53:35 -07:00
2019-02-19 15:56:41 -08:00
2019-09-03 21:11:49 -07:00
2019-09-03 21:11:49 -07:00
2019-09-03 21:11:49 -07: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