Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 1.57 KB

File metadata and controls

43 lines (28 loc) · 1.57 KB

Setting up basic Elastic DB and Kibana with Docker

This guide will walk you through the steps to set up Elastic DB and Kibana using Docker Desktop. This is a basic setup with no security or password configuration. `If for security, you can check elastic_secure

Prerequisites

Before you begin, ensure you have Docker Desktop installed on your system. If not, follow the steps below to install Docker Desktop:

  1. Install Docker Desktop:

Setup Elastic DB and Kibana

Follow these steps to set up Elastic DB and Kibana using Docker Desktop:

  1. Create .env file, and put env variables like in example.env file:

    ELASTIC_VERSION=8.8.0
    ELASTIC_PORT=9200
    KIBANA_PORT=5600
    
  2. Run Docker Compose:

    docker-compose up -d

    This command will start Elastic DB and Kibana containers in the background.

  3. Access Elastic Kibana:

Notes

  • By default, this setup does not include any security or password protection. It's recommended to configure security settings according to your requirements before deploying to production.
  • Ensure that Docker Desktop is running before executing Docker Compose commands.