From b75379a980e2207d206e1ade2a7931c5999c84b8 Mon Sep 17 00:00:00 2001 From: Geoff Bourne Date: Tue, 17 Feb 2015 19:11:53 -0600 Subject: [PATCH] [jenkins] Adding git and openjdk install example --- jenkins/README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/jenkins/README.md b/jenkins/README.md index ff96ddc1..4323bd64 100644 --- a/jenkins/README.md +++ b/jenkins/README.md @@ -23,3 +23,12 @@ would be: As with any Docker container, you can run a shell within the running container: docker exec -it $ID bash + +A more realistic example is installing git, openjdk-7-jdk, etc: + + docker exec $ID apt-get update + docker exec $ID apt-get install -y git openjdk-7-jdk + +and then Configure the JDK in Jenkins: + +![](http://i.imgur.com/HVetwKc.png)