Skip to content

Files

Latest commit

 

History

History
43 lines (30 loc) · 663 Bytes

README.md

File metadata and controls

43 lines (30 loc) · 663 Bytes

Elasticsearch image

Requirements

You must have Docker >= 1.5.

What's inside

Configuration

Ports

You can bind ports :

  • 9200
  • 9300

Volumes

You can mount directories :

  • /data : parent dir of all shared directories
  • /data/data
  • /data/log
  • /data/plugins
  • /data/work

Usage

# pull (auto) and run
# mount volumes
docker run \
  -d \
  --name elasticsearch \
  -p 9200:9200 \
  -p 9300:9300 \
  -v ~/docker/elasticsearch:/data \
  monsieurchico/elasticsearch