Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial release of quick-start demo solution #970

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions quick-start/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# How-To do a quickstart of Jenkins Docker container

## Prerequisites

Docker is installed on your machine (Docker for Mac or Docker for Windows will work)

## Steps

- Open the terminal and run the following command:

docker run -p 8080:8080 -p 50000:50000 jenkins/jenkins:lts

- Wait till Jenkins starts up (Jenkins is up and running message in the log)

- Go to [your Jenkins host](http://localhost:8080). You should see the Jenkins web interface with the Installation wizard.

- To unlock the Jenkins instance - go to the terminal and find the following message in the startup log:

*************************************************************

Jenkins initial setup is required. An admin user has been created
and a password generated.
Please use the following password to proceed to installation:

<PASSWORD>

This may also be found at: /var/jenkins_home/secrets/initialAdminPassword

*************************************************************

- Copy the password and paste it into the unlock screen.
Use the "Select plugins to install" option in the Customize CloudBees Jenkins Distribution screen, select None in the top panel of the window to unselect all plugins. Then click Install.
vsilverman marked this conversation as resolved.
Show resolved Hide resolved
vsilverman marked this conversation as resolved.
Show resolved Hide resolved
We do not need plugins for this quickstart
Your Jenkins is ready!