From dce189c42bb25ac8671104df2b7bd933f9269aa9 Mon Sep 17 00:00:00 2001 From: Anthony Lapenna Date: Thu, 15 Sep 2016 10:01:19 +1200 Subject: [PATCH] Add the elasticsearch template --- README.md | 1 + templates.json | 11 +++++++++++ 2 files changed, 12 insertions(+) diff --git a/README.md b/README.md index 6622151..a48214b 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,7 @@ It also describes how to host your own Apps. * HAProxy (based on `httpd:latest`) * MySQL (based on `mysql:latest`) * Mongo (based on `mongo:latest`) +* Elasticsearch (based on `elasticsearch:latest`) * Redis (based on `redis:latest`) * WordPress (based on `wordpress:latest`) * Drupal (based on `drupal:latest`) diff --git a/templates.json b/templates.json index c27d413..6420f1f 100644 --- a/templates.json +++ b/templates.json @@ -56,6 +56,17 @@ ], "volumes": ["/data/db"] }, + { + "title": "Elasticsearch", + "description": "Open-source search and analytics engine", + "logo": "https://hub.docker.com/public/images/official/elasticsearch.png", + "image": "elasticsearch:latest", + "ports": [ + "9200/tcp", + "9300/tcp" + ], + "volumes": ["/usr/share/elasticsearch/data"] + }, { "title": "Redis", "description": "open source in-memory data structure store",