DevOps Tools/CI/Jenkins
From r00tedvw.com wiki
(Difference between revisions)
Line 7: | Line 7: | ||
:<code>-u root</code> | :<code>-u root</code> | ||
<div class="mw-collapsible mw-collapsed"> | <div class="mw-collapsible mw-collapsed"> | ||
− | This text is not collapsible; but the next is collapsible and hidden by default: | + | :This text is not collapsible; but the next is collapsible and hidden by default: |
<div class="mw-collapsible-content">{{Lorem}}</div> | <div class="mw-collapsible-content">{{Lorem}}</div> | ||
</div> | </div> |
Revision as of 17:17, 18 December 2018
Overview | Continuous Integration (CI) | Source Control Management (SCM) | Containerization | Configuration
Jenkins
Installation (Docker - OSX)
Download, Install, and Start Docker CE edition (.dmg)
Install Jenkins image from repo using blueocean image.
~$ sudo docker run \
-u root
- This text is not collapsible; but the next is collapsible and hidden by default:
--rm \
Test--rm \
-d \
-p 8080:8080 \ -p 50000:50000 \ -v jenkins-data:/var/jenkins_home \ -v /var/run/docker.sock:/var/run/docker.sock \
jenkinsci/blueocean