Skip to content

jigneshgadhavi/Continuous-Delivery-with-Docker-and-Jenkins

 
 

Repository files navigation

Continuous Delivery with Docker and Jenkins

This is the code repository for Continuous Delivery with Docker and Jenkins, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish.

About the Book

The combination of Docker and Jenkins improves your Continuous Delivery pipeline using fewer resources. It also helps you scale up your builds, automate tasks and speed up Jenkins performance with the benefits of Docker containerization.

This book will explain the advantages of combining Jenkins and Docker to improve the continuous integration and delivery process of app development. It will start with setting up a Docker server and configuring Jenkins on it. It will then provide steps to build applications on Docker files and integrate them with Jenkins using continuous delivery processes such as continuous integration, automated acceptance testing, and configuration management.

Instructions and Navigation

All of the code is organized into folders. Each folder starts with a number followed by the application name. For example, Chapter02.

The code will look like the following:

 pipeline {
      agent any
      stages {
           stage("Hello") {
                steps {
                     echo 'Hello World'
                }
           }
      }
 }

Docker requires the 64-bit Linux operating system. All examples in this book have been developed using Ubuntu 16.04, but any other Linux system with the kernel version 3.10 or above is sufficient.

Related Products

About

Continuous Delivery with Docker and Jenkins, published by Packt

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 84.0%
  • Shell 8.2%
  • Gherkin 4.3%
  • Dockerfile 3.5%