docker-kibana/README.md
2024-05-01 11:47:33 +08:00

18 lines
315 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# kibana容器服务
## 用法
先在`config/kibana.yml`文件中配置好elasticsearch服务地址和用户名密码
```yml
elasticsearch.hosts: [ "http://localhost:9200" ]
elasticsearch.username: "kibana"
elasticsearch.password: "elastic"
```
保存后启动容器即可:
```sh
docker compose up -d
```