1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00
dockerfiles/drone/README.md

81 lines
1.7 KiB
Markdown
Raw Normal View History

2016-01-11 15:21:41 +00:00
drone
=====
[Drone][1] is a Continuous Integration platform built on Docker, written in Go.
## github
```yaml
#
# Github » Settings » Applications » Developer applications » Register new application
#
Application name: drone
2016-05-01 01:06:20 +00:00
Homepage URL: http://drone.easypi.info/
2016-01-11 15:21:41 +00:00
Application description: Drone is a Continuous Integration platform built on Docker, written in Go
2016-05-01 01:06:20 +00:00
Authorization callback URL: http://drone.easypi.info/authorize
2016-01-11 15:21:41 +00:00
Client ID: ... (generated by github)
Client Secret: ... (generated by github)
```
## docker-compose.yml
```yaml
drone:
image: drone/drone:0.4
ports:
- "8000:8000"
volumes:
- ./drone:/var/lib/drone
- /var/run/docker.sock:/var/run/docker.sock
env_file: ./dronerc
restart: always
```
## dronerc
```bash
REMOTE_DRIVER=github
REMOTE_CONFIG=https://github.com?client_id=...&client_secret=...
```
## nginx/sites-enabled/drone
```
server {
listen 80;
2016-05-01 01:06:20 +00:00
server_name drone.easypi.info;
2016-01-11 15:21:41 +00:00
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $http_host;
proxy_set_header Origin "";
proxy_pass http://127.0.0.1:8000;
proxy_redirect off;
proxy_http_version 1.1;
proxy_buffering off;
chunked_transfer_encoding off;
}
}
```
## up and running
```
# server
$ cd ~/fig/drone/
$ docker-compose up -d
$ docker-compose logs
# client
2016-05-01 01:06:20 +00:00
$ firefox http://drone.easypi.info/settings/profile
2016-01-11 15:21:41 +00:00
$ curl http://downloads.drone.io/drone-cli/drone_darwin_amd64.tar.gz | tar zx -C /usr/local/bin/
2016-05-01 01:06:20 +00:00
$ export DRONE_SERVER=http://drone.easypi.info/
2016-01-11 15:21:41 +00:00
$ export DRONE_TOKEN=...
$ drone help
```
[1]: http://readme.drone.io/usage/overview/