dockerfile / elasticsearch

ElasticSearch Dockerfile for trusted automated Docker builds.
http://dockerfile.github.io/#/elasticsearch
MIT License
483 stars 314 forks source link

Elasticsearch GUI plugin #52

Open rucka opened 9 years ago

rucka commented 9 years ago

It should be great if you add Elasticsearch GUI installation in the docker image. Actually I have to instal successfully the gui in the running container entering in the container:

docker exec -it build_elasticsearch_1 bash
root@91cb5674cfb3:/# plugin --install jettro/elasticsearch-gui     
-> Installing jettro/elasticsearch-gui...
Trying https://github.com/jettro/elasticsearch-gui/archive/master.zip...
Downloading ...................................................................................................................................................................................................................................................................................................................DONE
Installed jettro/elasticsearch-gui into /usr/share/elasticsearch/plugins/gui
Identified as a _site plugin, moving to _site structure ...
root@91cb5674cfb3:/# exit

Thanks Regards Gianluca

nheinbaugh commented 9 years ago

In my opinion adding any plugins to this image ruin the concept of a base image. What I am doing is building my own Dockerfile that extends the official image to install the plugins that I use. I think that is the best approach, but you can always clone this repo and then make the changes you want.