Jenkins - Open source automation server
Everything you need to deploy Jenkins 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 Jenkins up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Jenkins with:
blastdock init jenkins
Interactive mode:
blastdock init jenkins -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 Jenkins installation with these configuration options.
HTTP port
Agent port
Timezone
Complete Docker Compose configuration for Jenkins deployment.
version: '3.8'
services:
jenkins:
image: jenkins/jenkins:lts
container_name: {{ project_name }}_jenkins
restart: unless-stopped
ports:
- "8080"
- "50000"
environment:
0: TZ={{ timezone }}
volumes:
- /var/jenkins_home
- /var/run/docker.sock
networks:
- jenkins_network
volumes:
jenkins_home:
driver: local
networks:
jenkins_network:
driver: bridge