Skip to content

Instantly share code, notes, and snippets.

@shinux
Created April 23, 2020 08:07
Show Gist options
  • Save shinux/fe4a43ddc1eec62b9de233389b522412 to your computer and use it in GitHub Desktop.
Save shinux/fe4a43ddc1eec62b9de233389b522412 to your computer and use it in GitHub Desktop.
connect remote elasticsearch from docker kibana by bridge mode
version: '3.3'
services:
kibana:
image: docker.elastic.co/kibana/kibana:6.8.3
network_mode: bridge
ports:
- "5601:5601"
environment:
ELASTICSEARCH_HOSTS: https://remote-es-host:port
@shinux
Copy link
Author

shinux commented Apr 23, 2020

docker-compose -f kibana-compose.yml up -d

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment