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
Back To Top
Search