docker pull sa40039455/elasticsearch
docker run --name "NAME" -p "Desired Port":9200 -p "Another desired port":9300 -d sa40039455/elasticsearch
docker run --name es -p 8080:9200 -p 8081:9300 -d sa40039455/elasticsearch
curl http://127.0.0.1:8080/
curl http://127.0.0.1:8080/_cat/plugins
FROM elasticsearch:2
RUN /usr/share/elasticsearch/bin/plugin install --batch cloud-aws
ENV discovery.type=single-node
EXPOSE 9200
Content type
Image
Digest
Size
209.1 MB
Last updated
over 6 years ago
docker pull sa40039455/elasticsearch