Skip to content

Overview

This is our developer docs about How to install Jenkins

Install Jenkins

Download and run Jenkins

Run Jenkins in Docker

  1. Install Docker
  2. Run the jenkinsci/blueocean image as a container in Docker using the following docker run command (bearing in mind that this command automatically downloads the image if this hasn’t been done):
    docker run \
      --rm \
      -u root \
      -p 8080:8080 \
      -v jenkins-data:/var/jenkins_home \
      -v /var/run/docker.sock:/var/run/docker.sock \
      -v "$HOME":/home \
      jenkinsci/blueocean
    
  3. Proceed to the Post-installation setup wizard.