# elasticsearch **Repository Path**: mirrors_tad-lispy/elasticsearch ## Basic Information - **Project Name**: elasticsearch - **Description**: ElasticSearch Dockerfile for Trusted Builds. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-26 - **Last Updated**: 2025-12-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## ElasticSearch Dockerfile With following plugins installed: * [Morfologik Analysis](https://github.com/monterail/elasticsearch-analysis-morfologik) ### Installation Install [Docker](https://www.docker.io/). ### Usage docker run -d -p 9200:9200 -p 9300:9300 --link mongo:mongo --name elasticsearch lzrski/elasticsearch #### Attach persistent/shared directories 1. Create a mountable data directory `` on the host. 2. Create ElasticSearch config file at `/elasticsearch.yml`. ```yml path: logs: /data/log data: /data/data ``` 3. Start a container by mounting data directory and specifying the custom configuration file: ```sh docker run -d -p 9200:9200 -p 9300:9300 -v :/data lzrski/elasticsearch /elasticsearch/bin/elasticsearch -Des.config=/data/elasticsearch.yml ``` After few seconds, open `http://:9200` to see the result.