Drone CI - Continuous Integration platform
Everything you need to deploy Drone with BlastDock
One command deployment
Production-ready security
Customizable settings
Ready to scale up
blastdock init
Initialize new project
blastdock deploy
Deploy the application
blastdock status
Check deployment status
blastdock logs
View application logs
Get Drone up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Drone with:
blastdock init drone
Interactive mode:
blastdock init drone -i
blastdock templates
List available templates
blastdock status project
Check deployment status
blastdock logs project
View application logs
blastdock stop project
Stop deployment
Customize your Drone installation with these configuration options.
Server port
RPC secret
GitHub OAuth client ID
GitHub OAuth client secret
Server hostname
Complete Docker Compose configuration for Drone deployment.
version: '3.8'
services:
drone-server:
image: drone/drone:latest
container_name: {{ project_name }}_drone_server
restart: unless-stopped
ports:
- "80"
environment:
0: DRONE_GITHUB_CLIENT_ID={{ github_client_id }}
1: DRONE_GITHUB_CLIENT_SECRET={{ github_client_secret }}
2: DRONE_RPC_SECRET={{ rpc_secret }}
3: DRONE_SERVER_HOST={{ server_host }}
4: DRONE_SERVER_PROTO=http
5: DRONE_TLS_AUTOCERT=false
volumes:
- /data
networks:
- drone_network
drone-runner:
image: drone/drone-runner-docker:latest
container_name: {{ project_name }}_drone_runner
restart: unless-stopped
depends_on:
- drone-server
environment:
0: DRONE_RPC_PROTO=http
1: DRONE_RPC_HOST=drone-server
2: DRONE_RPC_SECRET={{ rpc_secret }}
3: DRONE_RUNNER_CAPACITY=2
4: DRONE_RUNNER_NAME=docker-runner
volumes:
- /var/run/docker.sock
networks:
- drone_network
volumes:
drone_server_data:
driver: local
networks:
drone_network:
driver: bridge