Show some ❤️: ⭐ this Repository and follow hrittikhere
- Location: LinkedIn Live
- Date: Feb 4 2022, Fri
- Time: 9:00 pm IST to 10:30 PM IST
- Join here
- What is continuous integration?
- Why is it required?
- How to set up a self-hosted CI with Drone CI?
- Public IP on your local Machine via ngrok or Public VM with HTTP(80) port exposed. Use Azure or other Cloud Providers for a Public VM.
- GitHub Account with your Repositories
- docker-compose
The following script would work on Ubuntu and you can pipe it to bash to install docker and compose:
curl https://gist.githubusercontent.com/hrittikhere/3117497bfaf1736a144b0a3d9463c807/raw/07f6dc8c7f3c4aad093d4075e5ebcca106304c72/pavan.sh | bash
# Drone Server configuration
DRONE_SERVER_HOST=< hostname>
DRONE_SERVER_PROTO=http
DRONE_GITHUB_CLIENT_ID=<github client ID>
DRONE_GITHUB_CLIENT_SECRET=<github secret>
DRONE_RPC_SECRET=<Drone secret>
DRONE_TLS_AUTOCERT=false
DRONE_USER_CREATE=username:<github_username>,admin:true
# Runners configuration
DRONE_RPC_HOST=< hostname>
DRONE_RPC_PROTO=http
DRONE_RUNNER_NAME="Drone.io_runner" # It CANNOT contain spaces!
Create a shared secret to authenticate communication between runners and your central Drone server. You can use openssl to generate a shared secret:
openssl rand -hex 16
version: '3.8'
services:
drone:
image: 'drone/drone:2'
volumes:
- "/var/run/docker.sock:/var/run/docker.sock"
- "./volumes/drone:/data"
- '/etc/localtime:/etc/localtime:ro'
restart: always
ports:
- 80:80
env_file:
- .env
drone-agent:
image: drone/drone-runner-docker:1
command: agent
restart: always
depends_on:
- drone
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- '/etc/localtime:/etc/localtime:ro'
env_file:
- .env
kind: pipeline
type: docker
name: default
workspace:
base: /go
path: src/github.com/hrittikhere/reponame/main
steps:
- name: test
image: golang
commands:
- go mod init
- go get
- go test
- name: docker
image: plugins/docker
settings:
# registry: docker.io
repo: username/name_of_your_repo
username:
from_secret: docker_username
password:
from_secret: docker_password
tags:
- latest
Read more about Drone CI here.