Sign inSign up

eliotk/elasticsearch-beta

By eliotk

Updated almost 11 years ago

Image
0

1.6K

eliotk/elasticsearch-beta repository overview

ElasticSearch Beta Dockerfile

This repository contains Dockerfile of the latest beta release of ElasticSearch for Docker.

The corresponding Docker registry repo is here: (https://registry.hub.docker.com/u/eliotk/elasticsearch-beta/)

The Docker registry repo is an automated build repo so that the images will always reflect what's in the Dockerfile.

This is based on the official Docker elasticsearch repo.

Base Docker Image
Installation
  1. Install Docker.

  2. Download automated build from public Docker Hub Registry: docker pull eliotk/elasticsearch-beta

    (alternatively, you can build an image from Dockerfile: docker build -t="eliotk/elasticsearch-beta" github.com/eliotk/elasticsearch-docker-beta)

Usage
docker run -d -p 9200:9200 -p 9300:9300 eliotk/elasticsearch-beta
Attach persistent/shared directories
  1. Create a mountable data directory <data-dir> on the host.

  2. Create ElasticSearch config file at <data-dir>/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-dir>:/data eliotk/elasticsearch /elasticsearch/bin/elasticsearch -Des.config=/data/elasticsearch.yml
```

After few seconds, open http://<host>:9200 to see the result.

Tag summary

Content type

Image

Digest

sha256:aa6fc596c

Size

316.1 MB

Last updated

almost 11 years ago

docker pull eliotk/elasticsearch-beta