Kibana works on docker: how to save the dashboard?

I am launching kibana 5.2.1 from docker. I am using this image:FROM docker.elastic.co/kibana/kibana:5.2.1

The problem is that if I delete the container, the work done on kibana will be lost. How can I save the kibana control panel on a docker instance?

Can I use docker volume? if so, which folder in the container stores kibana data, so I can map it to a local folder.

Thanks!

+6
source share
1 answer

Based on this question, it looks like it stores in elasticsearch, so you don't need to mount a shared volume.

Location of custom Kibana panels in ElasticSearch

+4
source

Source: https://habr.com/ru/post/1015857/


All Articles