skip to Main Content

Docker's container name can not be resolved

I just tried to create two containers for Elastic Search and Kibana. docker network create esnetwork docker run --name myes --net esnetwork -p 127.0.0.1:9200:9200 -p 127.0.0.1:9300:9300 -e "discovery.type=single-node" elasticsearch:7.9.3 and Elastic Search works when I use http://localhost:9200 or http://internal-ip:9200 But…

VIEW QUESTION

Cannot Setup Elasticsearch/Kibana from Docker: Kibana "missing authentication credentials for REST request"

I am unable to set up a development Elasticsearch/Kibana instance from Docker images. I cannot get my Kibana service to connect to my Elasticsearch service. I have the following docker-compose.yml file. services: elasticsearch: container_name: elasticsearch image: docker.elastic.co/elasticsearch/elasticsearch:8.4.0 environment: - discovery.type=single-node…

VIEW QUESTION

Need a docker-compose for installing elastic search and kibana with password for kibana, for ELK stack version 8

version: "3.0" services: elasticsearch: container_name: es-container image: docker.elastic.co/elasticsearch/elasticsearch:7.11.0 environment: - xpack.security.enabled=false - "discovery.type=single-node" volumes: - ./esdata:/usr/share/elasticsearch/data networks: - es-net ports: - 9200:9200 kibana: container_name: kb-container image: docker.elastic.co/kibana/kibana:7.11.0 environment: - ELASTICSEARCH_HOSTS=http://es-container:9200 networks: - es-net depends_on: - elasticsearch ports: - 5601:5601 volumes:…

VIEW QUESTION
Back To Top
Search