Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 1.02 KB

jenkins-blue-ocean.md

File metadata and controls

37 lines (29 loc) · 1.02 KB

What is Jenkins Blue Ocean

Blue Ocean puts Continuous Delivery in reach of any team without sacrificing the power and sophistication of Jenkins. -- Jenkins Blue Ocean site

Examples

  1. Launch Jenkins Blue Ocean locally. Example:

    sudo docker run \
      --detach \
      --name jenkins-blue-ocean \
      --user root \
      --rm \
      --publish 9176:8080 \
      --publish 50000:50000 \
      --volume jenkins-data:/var/jenkins_home \
      --volume /var/run/docker.sock:/var/run/docker.sock \
      jenkinsci/blueocean
  2. Can be viewed at localhost:9176, since 9176 was the published port.

Sites

  1. Jenkins Blue Ocean site
  2. Documentation
    1. Getting Started
  3. Ports used in Demonstrations