Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 1.41 KB

docker-compose-directions.md

File metadata and controls

41 lines (31 loc) · 1.41 KB

Related Resource

For this Beginner's Crash Course, you can also use Docker to run Elasticsearch and Kibana this is not showed in the youtube video but it is optional and another popular way to install the software. You're going to find a docker-compose file that is going to deploy and install both Docker images using the following version.

  • elasticsearch:7.11.1
  • kibana:7.11.1

In order to be able to run this, you will need to have installed:

Install Elasticsearch and Kibana by using the following command:

docker-compose up -d

The previous command is going to spin up two docker containers that will be in the same Docker network and in detached mode. With this, you will be able to open the following urls :

If you want to check the logs :

docker-compose logs elasticsearch

for Kibana :

docker-compose logs kibana

If you want to stop Elasticsearch and Kibana, you will need to run the following command :

docker-compose stop

If you want to stop and destroy the docker services :

docker-compose down