Elasticsearch

Elasticsearch - Search and analytics engine

9200
Default Port
2
Services
12.0/20
Complexity
Medium
Memory Usage
Configuration

Installation Command

blastdock init elasticsearch

Template Overview

Everything you need to deploy Elasticsearch with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

Elasticsearch
docker.elastic.co/elasticsearch/elasticsearch:{{ es_version }}
Kibana
docker.elastic.co/kibana/kibana:{{ es_version }}
Categories
Other
Resource Requirements
CPU: Medium, Memory: Medium , Storage Required

Quick Commands

blastdock init Initialize new project
blastdock deploy Deploy the application
blastdock status Check deployment status
blastdock logs View application logs

Quick Installation

Get Elasticsearch up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy Elasticsearch with:

Terminal
blastdock init elasticsearch

Interactive mode:

Terminal
blastdock init elasticsearch -i

What's Included

Elasticsearch
Container service
Kibana
Container service

BlastDock Commands

blastdock templates List available templates
blastdock status project Check deployment status
blastdock logs project View application logs
blastdock stop project Stop deployment

Configuration Options

Customize your Elasticsearch installation with these configuration options.

4
Required Fields
0
Optional Fields
0
Auto-Generated Passwords

Es Port

Elasticsearch port

port
Default: 9200
Required: Yes

Kibana Port

Kibana port

port
Default: 5601
Required: Yes

Es Version

Elasticsearch version

string
Default: 8.8.0
Required: Yes

Es Memory

Elasticsearch memory limit

string
Default: 1g
Required: Yes

Docker Compose

Complete Docker Compose configuration for Elasticsearch deployment.

2
Services
1
Volumes
1
Networks
2
Exposed Ports
docker-compose.yml
version: '3.8'

services:
  elasticsearch:
    image: docker.elastic.co/elasticsearch/elasticsearch:{{ es_version }}
    container_name: {{ project_name }}_elasticsearch
    restart: unless-stopped
    ports:
      - "9200"
    environment:
      0: discovery.type=single-node
      1: ES_JAVA_OPTS=-Xms{{ es_memory }} -Xmx{{ es_memory }}
      2: xpack.security.enabled=false
    volumes:
      - /usr/share/elasticsearch/data
    networks:
      - elastic_network

  kibana:
    image: docker.elastic.co/kibana/kibana:{{ es_version }}
    container_name: {{ project_name }}_kibana
    restart: unless-stopped
    depends_on:
      - elasticsearch
    ports:
      - "5601"
    environment:
      - ELASTICSEARCH_HOSTS=http: //elasticsearch:9200
    networks:
      - elastic_network

volumes:
  elasticsearch_data:
    driver: local

networks:
  elastic_network:
    driver: bridge