I want to install Blue Ocean for Jenkins. Can anyone tell me the steps to do this.
Asked
Active
Viewed 6,124 times
3 Answers
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
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
-
We can add nginx as a reverse proxy as well & integrate it in the compose file. – vivekyad4v Sep 12 '17 at 04:16