I want to use Elasticsearch and Kibana in my project.For ease of deployment I would like to use docker containers.From reading some blogs I found that it is recommended to use 2 containers one for elasticsearch and another one for Kibana.
Is this the right approach?
I downloaded the official elasticsearch Dockerfile
from elsticsearch repository
However the Dockerfile
uses apt-get
commands which work only on Ubuntu/Debian
Do they have different official Docker
files for differnt distributions?
You don't need separate Dockerfiles for separate distributions. The ElasticSearch image is built on top of the official Debian image, and so when you build it from the Dockerfile, apt-get will be run inside a Debian instance, regardless of what the rest of your computer is using.