9

I want to install Blue Ocean for Jenkins. Can anyone tell me the steps to do this.

Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62
leena
  • 302
  • 3
  • 7

3 Answers3

8

Enable the experimental update centre by changing the url under manage plugins > advanced > update site to

https://updates.jenkins-ci.org/experimental/update-center.json

Check for updates by clicking “check now”. Enable the (Alpha) BlueOcean plugin.

Ruud
  • 3,118
  • 3
  • 39
  • 51
2
docker run -p 8888:8080 jenkinsci/blueocean:latest
slfan
  • 8,950
  • 115
  • 65
  • 78
SekharKari
  • 501
  • 5
  • 10
1

Docker compose for Jenkins blueocean with persistent storage on host directory "/var/lib/jenkins" -

version: "3"

services:
  jenkinsblue:
    image: jenkinsci/blueocean
    ports:
      - 8080:8080
    volumes:
      - /var/lib/jenkins:/var/jenkins_home

Access URL - http://[SERVER-IP]:8080

vivekyad4v
  • 13,321
  • 4
  • 55
  • 63