Giter VIP home page Giter VIP logo

docker-jenkins-dind's Introduction

Jenkins DinD (Docker in Docker)

This Jenkins Docker image provides Docker inside itself, which allows you to run any Docker container in your Jenkins build script. It also optionally allows the ability to push to a self-signed secure private registry.

Run it with mounted directory from host:

docker run --name jenkins-dind --privileged -d -p 8080:8080 -v /your/path:/var/lib/jenkins killercentury/jenkins-dind

Self-signed private registry

When using a private registry with a self-signed certificate, the Docker daemon needs to trust the registry's certificate. Run the container with the DOCKER_REGISTRY_CERT and DOCKER_REGISTRY_NAME environment variables set to configure Docker:

docker run --name jenkins-dind --privileged -d -p 8080:8080 -e DOCKER_REGISTRY_CERT=/certs/registry.crt -e DOCKER_REGISTRY_NAME=registry:5000 -v /certs:/certs -v /your/path:/var/lib/jenkins killercentury/jenkins-dind

This configures Docker to trust the registry at registry:5000.

Private registry + Jenkins

Easily stand up a private registry and jenkins environment by using roberto/private-registry container on Docker Hub. Once the private registry containers are up and running using private registry project's docker-compose.yml file, use this project's docker-compose.yml file to launch the jenkins container.

Why use this container

Because Docker container proivdes an isolated environment for running applications or tasks, which is perfect for any CI solution. This image is designed to run everything with Docker, so it doesn't pre-install any execution environment for any specific programming language. Instead, simply run the images you need from the public Docker Hub or your private Docker registry for your CI tasks.

This Docker image is based on jpetazzo/dind instead of the offical Jenkins. Supervisord is used to make sure everything has proper permission and lanuch in the right order. Morever, Docker Compose is available for launching multiple containers inside the CI.

docker-jenkins-dind's People

Contributors

rca avatar killercentury avatar vixns avatar pauloborges avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.