December 2017
Beginner to intermediate
362 pages
8h 35m
English
Now that we have our Docker host ready, let's run Jenkins:
docker run -d --name jenkins_dev -p 8080:8080 \ -p 50000:50000 jenkins/jenkins:lts
You should see the following output:
... ... ...
d52829d9da9e0a1789a3117badc862039a0084677be6a771a959d8467b9cc267
|
Parameters |
Description |
|
docker |
Used to invoke the Docker utility. |
|
run |
A Docker command to run a container. |
|
-d |
This option runs the container in the backend. |
|
--name ... |
Read now
Unlock full access