Hi every one ,
I'm new in elk and now i'm using kibana with the port 5601
docker run -d --name=kibana --restart=unless-stopped --link elasticsearch:elasticsearch -p 5601:5601 kibana:5.2
What i need is to run the kibana container using the port 80
This is what i do :
docker run -d --name=kibana --restart=unless-stopped --link elasticsearch:elasticsearch -p 80:80 -p 5601:5601 kibana:5.2
but i got any result by puttin just my "Hostname in the navigator"
I also crete a new file kibana.yml and i uncommented the line that identify the port and i repaced 5601 by 80
This what i did after that :
docker run -d --name=kibana --restart=unless-stopped --link elasticsearch:elasticsearch -v ./config/kibana.yml:/etc/kibana/kibana.yml -p 80:80 kibana:5.2
docker exec -it <container_name> bash
my config is applied inside the container , but i still can't access via port 80.