From 3ba939aed1369421937f3438341f5a6064989a01 Mon Sep 17 00:00:00 2001 From: Anthony Lapenna Date: Thu, 15 Sep 2016 10:07:32 +1200 Subject: [PATCH] Add the jenkins template --- README.md | 1 + templates.json | 13 ++++++++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a48214b..73648ed 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,7 @@ It also describes how to host your own Apps. * Mongo (based on `mongo:latest`) * Elasticsearch (based on `elasticsearch:latest`) * Redis (based on `redis:latest`) +* Jenkins (based on `jenkins:latest`) * WordPress (based on `wordpress:latest`) * Drupal (based on `drupal:latest`) * Magento 2 (based on `alankent/gsd:latest`) diff --git a/templates.json b/templates.json index 6420f1f..b09c746 100644 --- a/templates.json +++ b/templates.json @@ -69,7 +69,7 @@ }, { "title": "Redis", - "description": "open source in-memory data structure store", + "description": "Open-source in-memory data structure store", "logo": "https://hub.docker.com/public/images/official/redis.png", "image": "redis:latest", "ports": [ @@ -77,6 +77,17 @@ ], "volumes": ["/data"] }, + { + "title": "Jenkins", + "description": "Open-source continuous integration tool", + "logo": "https://hub.docker.com/public/images/official/jenkins.png", + "image": "jenkins:latest", + "ports": [ + "8080/tcp", + "50000/tcp" + ], + "volumes": ["/var/jenkins_home"] + }, { "title": "WordPress", "description": "A free and open-source CMS",