Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.

Latest commit

 

History

History
20 lines (13 loc) · 709 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 709 Bytes

Unmaintaned: We don't use this image anymore and therefore don't maintain it. Feel free to fork it though.

JNLP Slave with Docker

A JNLP Slave Docker image with docker and docker-compose installed. We use this with the Jenkins ECS plugin to automatically provision Jenkins slaves which then can use Docker to run their jobs.

You can either connect via the Docker socket like this:

docker run -v /var/run/docker.sock:/var/run/docker.sock ninech/jnlp-slave-with-docker docker ps

Or better, connect to some external Docker deamon via TCP:

docker run -e DOCKER_HOST=dind ninech/jnlp-slave-with-docker docker ps

See the docker-compose.yml file for reference.