Hi,
I am following the official drone documentation to setup a self hosted drone on an Azure Ubuntu 16.04 VM.
This is my docker-compose file:
version: ‘2’
services:
drone-server:
image: drone/drone
ports:
- 80:8000
- 9000:9000
volumes:
- drone-server-data:/var/lib/drone/
restart: always
environment:
- DRONE_OPEN=true
- DRONE_DEBUG=true
- DRONE_ADMIN=debottam
- DRONE_HOST=${DRONE_HOST}
- DRONE_GITHUB=true
- DRONE_GITHUB_CLIENT=${DRONE_GITHUB_CLIENT}
- DRONE_GITHUB_SECRET=${DRONE_GITHUB_SECRET}
- DRONE_SECRET=${DRONE_SECRET}
- DRONE_GITHUB_SKIP_VERIFY=true
drone-agent:
image: drone/agent:0.8
command: agent
restart: always
depends_on:
- drone-server
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
- DRONE_SERVER=drone-server:9000
- DRONE_SECRET=${DRONE_SECRET}
- DRONE_GITHUB_SKIP_VERIFY=true
volumes:
drone-server-data:
Below is the last few lines of docker-compose up output when I try to access the drone url (<VMPublicIP:80>) -
drone-server_1 | time=“2018-10-03T06:47:09Z” level=debug msg=“agent connected: d60b92b055d0: polling”
drone-server_1 | time=“2018-10-03T06:48:45Z” level=info ip=106.51.30.111 latency=323.701µs method=GET path="/" status=200 time=“2018-10-03T06:48:45Z” user-agent=“Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36”
drone-server_1 | time=“2018-10-03T06:48:46Z” level=info ip=106.51.30.111 latency=58.9µs method=GET path="/api/user/feed" status=401 time=“2018-10-03T06:48:46Z” user-agent=“Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36”
drone-server_1 | time=“2018-10-03T06:48:46Z” level=debug msg=“user feed: connection opened”
drone-server_1 | time=“2018-10-03T06:48:46Z” level=info ip=106.51.30.111 latency=67.6µs method=GET path="/login" status=303 time=“2018-10-03T06:48:46Z” user-agent=“Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36”
drone-server_1 | time=“2018-10-03T06:48:46Z” level=info ip=106.51.30.111 latency=327.101µs method=GET path="/authorize" status=303 time=“2018-10-03T06:48:46Z” user-agent=“Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36”
drone-server_1 | time=“2018-10-03T06:48:47Z” level=debug msg=“user feed: connection closed”
drone-server_1 | time=“2018-10-03T06:48:47Z” level=info ip=106.51.30.111 latency=1.058752003s method=GET path="/stream/events" status=200 time=“2018-10-03T06:48:47Z” user-agent=“Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36”
And, in the browser I am getting redirected to a 404 Github page which starts with “https://github.com/login/oauth/authorize?client_id=xxxx…”
Below is my docker version details:
Client:
Version: 18.06.1-ce
API version: 1.38
Go version: go1.10.3
Git commit: e68fc7a
Built: Tue Aug 21 17:24:56 2018
OS/Arch: linux/amd64
Experimental: false
Server:
Engine:
Version: 18.06.1-ce
API version: 1.38 (minimum version 1.12)
Go version: go1.10.3
Git commit: e68fc7a
Built: Tue Aug 21 17:23:21 2018
OS/Arch: linux/amd64
Experimental: false
I tried with both drone:0.8 and drone:latest.
DRONE_HOST=http://dronecicd, where “dronecicd” is the hostname of my VM.
Can anyone please help me out here, what am I missing? Thanks a lot in advance.
Regards,
Debottam