diff --git a/elasticsearch/README-short.txt b/elasticsearch/README-short.txt new file mode 100644 index 000000000..c438cd959 --- /dev/null +++ b/elasticsearch/README-short.txt @@ -0,0 +1 @@ +Elasticsearch is a powerful open source search and analytics engine that makes data easy to explore. diff --git a/elasticsearch/README.md b/elasticsearch/README.md new file mode 100644 index 000000000..61c8801a8 --- /dev/null +++ b/elasticsearch/README.md @@ -0,0 +1,67 @@ +# Supported tags and respective `Dockerfile` links + + + +For more information about this image and its history, please see the [relevant +manifest file +(`library/elasticsearch`)](https://github.com/docker-library/official-images/blob/master/library/elasticsearch) +in the [`docker-library/official-images` GitHub +repo](https://github.com/docker-library/official-images). + +# What is Elasticsearch? + +Elasticsearch is a search server based on Lucene. It provides a distributed, +multitenant-capable full-text search engine with a RESTful web interface and +schema-free JSON documents. + +> [wikipedia.org/wiki/Elasticsearch](https://en.wikipedia.org/wiki/Elasticsearch) + +![logo](https://raw.githubusercontent.com/docker-library/docs/master/elasticsearch/logo.png) + +# How to use this image + +You can run the default `elasticsearch` command simply: + + docker run -it --rm elasticsearch + +You can also pass in additional flags to `elasticsearch`: + + docker run -it --rm elasticsearch -Des.node.name="TestNode" + +This image comes with a default set of configuration files for `elasticsearch`, +but if you want to provide your own set of configuration files, you can do so +via a volume bindmount. + + docker run -it --rm -v "$PWD/config":/usr/share/elasticsearch/config elasticsearch + +# License + +View license information for [Elasticsearch](http://www.elasticsearch.org/guide/en/elasticsearch/hadoop/current/license.html) software contained in this image. + +# Supported Docker versions + +This image is officially supported on Docker version 1.4.1. + +Support for older versions (down to 1.0) is provided on a best-effort basis. + +# User Feedback + +## Issues + +If you have any problems with or questions about this image, please contact us + through a [GitHub issue](https://github.com/docker-library/elasticsearch/issues). + +You can also reach many of the official image maintainers via the +`#docker-library` IRC channel on [Freenode](https://freenode.net). + +## Contributing + +You are invited to contribute new features, fixes, or updates, large or small; +we are always thrilled to receive pull requests, and do our best to process them +as fast as we can. + +Before you start to code, we recommend discussing your plans +through a [GitHub issue](https://github.com/docker-library/elasticsearch/issues), especially for more ambitious +contributions. This gives other contributors a chance to point you in the right +direction, give you feedback on your design, and help you find out if someone +else is working on the same thing. diff --git a/elasticsearch/content.md b/elasticsearch/content.md new file mode 100644 index 000000000..63f4b594e --- /dev/null +++ b/elasticsearch/content.md @@ -0,0 +1,25 @@ +# What is Elasticsearch? + +Elasticsearch is a search server based on Lucene. It provides a distributed, +multitenant-capable full-text search engine with a RESTful web interface and +schema-free JSON documents. + +> [wikipedia.org/wiki/Elasticsearch](https://en.wikipedia.org/wiki/Elasticsearch) + +%%LOGO%% + +# How to use this image + +You can run the default `elasticsearch` command simply: + + docker run -it --rm elasticsearch + +You can also pass in additional flags to `elasticsearch`: + + docker run -it --rm elasticsearch -Des.node.name="TestNode" + +This image comes with a default set of configuration files for `elasticsearch`, +but if you want to provide your own set of configuration files, you can do so +via a volume bindmount. + + docker run -it --rm -v "$PWD/config":/usr/share/elasticsearch/config elasticsearch diff --git a/elasticsearch/license.md b/elasticsearch/license.md new file mode 100644 index 000000000..35d7566ee --- /dev/null +++ b/elasticsearch/license.md @@ -0,0 +1,2 @@ +View license information for [Elasticsearch](http://www.elasticsearch.org/guide/en/elasticsearch/hadoop/current/license.html) software contained in this image. + diff --git a/elasticsearch/logo.png b/elasticsearch/logo.png new file mode 100644 index 000000000..e20c03ac7 Binary files /dev/null and b/elasticsearch/logo.png differ