Jenkins docker image with docker inside
Jenkins is an open source, Java-based automation server that offers an easy way to set up a continuous integration and continuous delivery (CI/CD) pipeline.
Continuous Integration (CI) is the process of automating the build and testing of code every time a team member commits changes to version control. Continuous Delivery (CD) is the process to build, test, configure and deploy from a build to a production environment.
Jenkins docker image with docker inside
Step 1/ Create Dockerfile extending the official Alpine image. Then get jenkins.war and docker from official sites.
Step 2/ Jenkins admin user setup to set a default admin user and password, by creating a Groovy script file.
Step 3/ Adding Plugins to auto install some selected plugins.
Step 4/ Build Your Custom Jenkins Image
Here is a fully functional Jenkins server.
Comments
Post a Comment