mirror of
https://github.com/vimagick/dockerfiles.git
synced 2026-01-03 03:27:27 +01:00
update gogs
This commit is contained in:
@@ -5,43 +5,36 @@ drone
|
||||
|
||||
## github
|
||||
|
||||
```yaml
|
||||
drone:
|
||||
image: drone/drone:1.5-linux-amd64
|
||||
ports:
|
||||
- "8080:80"
|
||||
volumes:
|
||||
- ./data:/data
|
||||
environment:
|
||||
- DRONE_AGENTS_ENABLED=true
|
||||
- DRONE_SERVER_PROTO=http
|
||||
- DRONE_SERVER_HOST=drone.easypi.pro
|
||||
- DRONE_RPC_SECRET=secret
|
||||
- DRONE_GITHUB_SERVER=https://github.com
|
||||
- DRONE_GITHUB_CLIENT_ID=xxxxxx
|
||||
- DRONE_GITHUB_CLIENT_SECRET=xxxxxx
|
||||
restart: always
|
||||
```
|
||||
|
||||
```yaml
|
||||
#
|
||||
# Github » Settings » Applications » Developer applications » Register new application
|
||||
#
|
||||
Application name: drone
|
||||
Homepage URL: http://drone.easypi.info/
|
||||
Homepage URL: http://drone.easypi.pro/
|
||||
Application description: Drone is a Continuous Integration platform built on Docker, written in Go
|
||||
Authorization callback URL: http://drone.easypi.info/authorize
|
||||
Authorization callback URL: http://drone.easypi.pro/authorize
|
||||
Client ID: ... (generated by github)
|
||||
Client Secret: ... (generated by github)
|
||||
```
|
||||
|
||||
## docker-compose.yml
|
||||
|
||||
```yaml
|
||||
drone:
|
||||
image: drone/drone
|
||||
ports:
|
||||
- "8000:8000"
|
||||
volumes:
|
||||
- ./drone:/var/lib/drone
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
environment:
|
||||
- REMOTE_DRIVER=github
|
||||
- REMOTE_CONFIG=https://github.com?client_id=...&client_secret=...
|
||||
# - REMOTE_DRIVER=gogs
|
||||
# - REMOTE_CONFIG=https://git.easypi.info/?open=false
|
||||
- DEBUG=false
|
||||
restart: always
|
||||
|
||||
wall:
|
||||
image: drone/drone-wall
|
||||
ports:
|
||||
- "8080:80"
|
||||
restart: always
|
||||
```
|
||||
|
||||
> Drone will register gogs webhooks automatically, you don't need to do it manually.
|
||||
|
||||
## nginx/sites-enabled/drone
|
||||
@@ -49,7 +42,7 @@ wall:
|
||||
```
|
||||
server {
|
||||
listen 80;
|
||||
server_name drone.easypi.info;
|
||||
server_name drone.easypi.pro;
|
||||
location / {
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $remote_addr;
|
||||
@@ -57,7 +50,7 @@ server {
|
||||
proxy_set_header Host $http_host;
|
||||
proxy_set_header Origin "";
|
||||
|
||||
proxy_pass http://127.0.0.1:8000;
|
||||
proxy_pass http://127.0.0.1:8080;
|
||||
proxy_redirect off;
|
||||
proxy_http_version 1.1;
|
||||
proxy_buffering off;
|
||||
@@ -65,14 +58,6 @@ server {
|
||||
chunked_transfer_encoding off;
|
||||
}
|
||||
}
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
server_name wall.easypi.info;
|
||||
location / {
|
||||
proxy_pass http://127.0.0.1:8080;
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
## up and running
|
||||
@@ -81,13 +66,10 @@ server {
|
||||
# server
|
||||
$ cd ~/fig/drone/
|
||||
$ docker-compose up -d
|
||||
$ docker-compose logs
|
||||
$ docker-compose logs -f
|
||||
|
||||
# client (login with remote driver credential)
|
||||
$ firefox http://drone.easypi.info/
|
||||
|
||||
# dashboard
|
||||
$ firefox http://wall.easypi.info/
|
||||
$ firefox http://drone.easypi.pro/
|
||||
```
|
||||
|
||||
[1]: http://readme.drone.io/usage/overview/
|
||||
[1]: https://readme.drone.io
|
||||
|
||||
Reference in New Issue
Block a user