Skip to content

Drone is a Container-Native, Continuous Delivery Platform

License

Notifications You must be signed in to change notification settings

parkside-securities/drone

 
 

Repository files navigation

parkside-securities/drone

A fork of drone/drone.

Modifications

  • Add -tags nolimit to scripts/build.sh so that the limitation of 5,000 builds per year is lifted.
  • Checks [skip ci], [ci skip], **no ci** only in the title, and ignore them in the commit message.
  • Add Dockerfile and let Quay build the image instead of .drone.yml. We don't need to build for multiple architectures and deployment URL is hard-coded, so decided to provide a separate Dockerfile and manage in Quay.

Usage

Specify quay.io/parkside-securities/drone:tag in green-bay/drone-server, build an AMI, and deploy an EC2 instance with the AMI.

Original README

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.

About

Drone is a Container-Native, Continuous Delivery Platform

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 99.0%
  • Other 1.0%