Deploy Elasticsearch + Kibana as Docker Containers

Video
This tutorial is explained in the below Youtube Video.Implementation
Elasticsearch
For this we will be taking reference of elasticsearch docker reference page.Create a new docker network. In a previous Deploying Multiple Spring Boot Microservices to Docker using Docker Networking we have seen that for to docker containers to communicate with each other we need to create a dedicated network.
docker network create elastic

Pull the Elasticsearch Docker image.
docker pull docker.elastic.co/elasticsearch/elasticsearch:8.14.3