Jenkins

Jenkins - Open source automation server

8080
Default Port
1
Services
7.5/20
Complexity
Low
Memory Usage
Configuration

Installation Command

blastdock init jenkins

Template Overview

Everything you need to deploy Jenkins with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

Jenkins
jenkins/jenkins:lts
Categories
Other
Resource Requirements
CPU: Low, Memory: Low , Storage Required

Quick Commands

blastdock init Initialize new project
blastdock deploy Deploy the application
blastdock status Check deployment status
blastdock logs View application logs

Quick Installation

Get Jenkins up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy Jenkins with:

Terminal
blastdock init jenkins

Interactive mode:

Terminal
blastdock init jenkins -i

What's Included

Jenkins
Container service

BlastDock Commands

blastdock templates List available templates
blastdock status project Check deployment status
blastdock logs project View application logs
blastdock stop project Stop deployment

Configuration Options

Customize your Jenkins installation with these configuration options.

3
Required Fields
0
Optional Fields
0
Auto-Generated Passwords

Http Port

HTTP port

port
Default: 8080
Required: Yes

Agent Port

Agent port

port
Default: 50000
Required: Yes

Timezone

Timezone

string
Default: UTC
Required: Yes

Docker Compose

Complete Docker Compose configuration for Jenkins deployment.

1
Services
1
Volumes
1
Networks
2
Exposed Ports
docker-compose.yml
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