Docker-based jenkins slaves
History /
Edit /
PDF /
EPUB /
BIB /
Created: November 7, 2015 / Updated: November 2, 2024 / Status: unknown / 2 min read (~395 words)
Created: November 7, 2015 / Updated: November 2, 2024 / Status: unknown / 2 min read (~395 words)
In this article, we'll go over how to setup Jenkins on an Ubuntu machine to run PHP 7.1 jobs. The steps should easily be adapted for any other OS and target environment.
- Docker Slaves Plugin
- In a Dockerfile
- docker build -t your/image:1.0.0 -t your/image:latest .
- your/image (will use your/image:latest)
This is particularly useful if you need to pull git repositories from a private repository.
As of December 2016, if you want to be able to use the SSH key in a docker container, you have to first start the ssh agent on the node used that will run the docker container and when you run the docker image, pass in the SSH_AUTH_SOCK as a volume so that it is shared with its host.