I want to install Blue Ocean for Jenkins. Can anyone tell me the steps to do this.
Install and setup BlueOcean for Jenkins
Asked Answered
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.
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
We can add nginx as a reverse proxy as well & integrate it in the compose file. –
Lepidolite
© 2022 - 2024 — McMap. All rights reserved.