Docker
Docker is a platform for running applications in an isolated environment called a "container" (or Docker container). Applications like Jenkins can be downloaded as read-only "images" (or Docker images), each of which is run in Docker as a container. A Docker container is in effect a "running instance" of a Docker image. From this perspective, an image is stored permanently more or less (i.e. insofar as image updates are published), whereas containers are stored temporarily. Read more about these concepts in the Docker documentation’s Getting Started, Part 1: Orientation and setup page.
Docker’s fundamental platform and container design means that a single Docker image (for any given application like Jenkins) can be run on any supported operating system (macOS, Linux and Windows) or cloud service (AWS and Azure) which is also running Docker.
Installing Docker
To install Docker on your operating system, follow "prerequisites" section of the Guided Tour page
As an alternative solution you can visit the Dockerhub and select the Docker Community Edition suitable for your operating system or cloud service. Follow the installation instructions on their website.
If you are installing Docker on a Linux-based operating system, ensure you configure Docker so it can be managed as a non-root user. Read more about this in Docker’s Post-installation steps for Linux page of their documentation. This page also contains information about how to configure Docker to start on boot. |
Unresolved include directive in modules/installing/pages/docker.adoc - include::doc/book/installing/_installation_requirements.adoc[]
Downloading and running Jenkins in Docker
There are several Docker images of Jenkins available.
The recommended Docker image to use is the Official
jenkins/jenkins
image
(from the Docker Hub repository). This image
contains the current Long-Term Support (LTS) release of Jenkins
(which is production-ready). However this image doesn’t have docker CLI inside it
and is not bundled with frequently used Blue Ocean plugins and features.
This means that if you want to use the full power of Jenkins and Docker you may want
to go through described below installation process.
A new |
Unresolved include directive in modules/installing/pages/docker.adoc - include::doc/book/installing/_docker.adoc[]
Unresolved include directive in modules/installing/pages/docker.adoc - include::doc/book/installing/_setup-wizard.adoc[]