Go to file
Glenn Y. Rolland 8b3981a3e7 doc: Fix push command & remove letsencrypt command 2022-08-18 20:39:47 +02:00
Dockerfile Initial import 2022-08-18 20:29:48 +02:00
README.md doc: Fix push command & remove letsencrypt command 2022-08-18 20:39:47 +02:00
docker-compose.yml Initial import 2022-08-18 20:29:48 +02:00
entrypoint-wrapper.sh Initial import 2022-08-18 20:29:48 +02:00

README.md

Drone Runner

Setup on Dokku

Create APP

dokku apps:create cicd-agent

Setup Network & Domains

dokku network:create cicd_net
dokku network:set cicd-agent attach-post-create cicd_net

Setup Volumes

dokku storage:mount cicd-agent /var/run/docker.sock:/var/run/docker.sock

Setup Configuration

dokku config:set cicd-agent DRONE_RPC_PROTO=http
dokku config:set cicd-agent DRONE_RPC_HOST=drone
dokku config:set cicd-agent DRONE_RUNNER_CAPACITY=2
dokku config:set cicd-agent DRONE_RUNNER_NETWORKS=cicd_net
dokku config:set cicd-agent DRONE_DEBUG=false
dokku config:set cicd-agent DRONE_TRACE=false

Setup Secrets

dokku config:set cicd-agent DRONE_RPC_SECRET=$(dokku config:get cicd DRONE_RPC_SECRET)

Deploy

git remote add dokku dokku@dinlas.apps.glenux.net:cicd-agent
git push dokku master