Install and setup BlueOcean for Jenkins
Asked Answered
C

3

9

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

Canned answered 1/7, 2016 at 9:29 Comment(0)
K
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.

Kendry answered 8/7, 2016 at 12:19 Comment(0)
M
2
docker run -p 8888:8080 jenkinsci/blueocean:latest
Mindi answered 16/4, 2017 at 13:14 Comment(0)
L
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

Lepidolite answered 12/9, 2017 at 4:16 Comment(1)
We can add nginx as a reverse proxy as well & integrate it in the compose file.Lepidolite

© 2022 - 2024 — McMap. All rights reserved.