Sign inSign up

exoplatform/elasticsearch

By exoplatform

•Updated about 2 years ago

Elastic search container for eXo Platform

Image
0

10K+

exoplatform/elasticsearch repository overview

⁠Elasticsearch for eXo platform

This is a prepackaged image of ElasticSearch ready to use with eXo Platform version >= 4.4.

It is based on the official ElasticSearch image.

⁠Compatibility Matrix

eXo Platform versionImage VersionElasticsearch version
>= 7.0.02.1.18.14.3
>= 6.5.02.1.08.7.1
>= 6.3.02.0.37.17.1
>= 6.2.02.0.27.13.2
>= 5.3.01.2.35.6.16
>= 5.2.01.2.15.6.11
>= 5.1.01.2.05.6.9
>= 5.0.01.1.05.6.3
>= 4.4.00.42.3.2

⁠Usage

This image usage is the same as the official ElasticSearch image.

see https://hub.docker.com/_/elasticsearch/⁠

see https://www.elastic.co/guide/en/elasticsearch/reference/current/docker.html⁠ for the related Elasticsearch version

⁠Basic usage

docker run -d --name exo_elasticsearch -e ES_JAVA_OPTS="-Xms8g -Xmx8g" -e node.name=es-1 -e cluster.name=es -e cluster.initial_master_nodes=es-1 -e xpack.security.enabled=false -e network.host=_site_ -v <my data path>:/usr/share/elasticsearch/data -p 9200:9200 exoplatform/elasticsearch

WARNING: Don't expose publicly your elasticsearch without securing it

⁠Basic docker compose usage

This is a very basic docker compose file of a single node cluster, for tests only, without security, exposing port 9200.

WARNING: Don't expose publicly your elasticsearch without securing it

version: "3.3"
services:
  es:
    image: exoplatform/elasticsearch:latest
    container_name: es
    hostname: es
    restart: on-failure
    environment:
      - node.name=es-1
      - cluster.name=es
      - cluster.initial_master_nodes=es-1
      - ES_JAVA_OPTS=-Xms8g -Xmx8g
      - xpack.security.enabled=false
      - network.host=_site_
    volumes:
      - ./search:/usr/share/elasticsearch/data:rw
    ports:
      - "9200:9200"

⁠eXo Platform instance configuration

The way to configure you eXo Platform instance is explained in details on this eXo documentation section⁠

Tag summary

Content type

Image

Digest

sha256:d21f5a64a…

Size

636.2 MB

Last updated

about 2 years ago

docker pull exoplatform/elasticsearch