Jenkins LTS with Docker CE 18 preinstalled as a single DinD container. Readily available DinD container for Jenkins LTS. The Docker version available with this version is CE 18.06.1 (docker-18.06.1-ce). This container is useful if you want to use Jenkins to use docker service to build or, deploy projects to docker swarm, etc.
View project
Jenkins LTS with Docker CE 18 preinstalled as a single DinD container
Readily available DinD container for Jenkins LTS. The Docker version available with this version is CE 18.06.1 (docker-18.06.1-ce). This container is useful if you want to use Jenkins to use docker service to build or, deploy projects to docker swarm, etc.
If you're running docker you're already sorted. This image can be used with docker-compose by adding,
image: ramitmitra/jenkins-lts-dind
Example compose syntax :
jenkins:
image: ramitmitra/jenkins-lts-dind
privileged: true
restart: on-failure
stop_grace_period: 1m
ports:
- "8080:8080"
- "32768:50000"
deploy:
replicas: 2
update_config:
parallelism: 2
delay: 10s
restart_policy:
condition: on-failure
volumes:
- jenkins_data:/var/jenkins_home
This image is available at docker hub at https://hub.docker.com/r/ramitmitra/jenkins-lts-dind/
This project is licensed under the MIT License - see the LICENSE.md file for details