kibana容器服务
This commit is contained in:
commit
0551a93e5c
11
config/kibana.yml
Normal file
11
config/kibana.yml
Normal file
@ -0,0 +1,11 @@
|
||||
#
|
||||
# ** THIS IS AN AUTO-GENERATED FILE **
|
||||
#
|
||||
|
||||
# Default Kibana configuration for docker target
|
||||
server.host: "0.0.0.0"
|
||||
server.shutdownTimeout: "5s"
|
||||
elasticsearch.hosts: [ "http://localhost:9200" ]
|
||||
monitoring.ui.container.elasticsearch.enabled: true
|
||||
elasticsearch.username: "kibana"
|
||||
elasticsearch.password: "elastic"
|
15
config/node.options
Normal file
15
config/node.options
Normal file
@ -0,0 +1,15 @@
|
||||
## Node command line options
|
||||
## See `node --help` and `node --v8-options` for available options
|
||||
## Please note you should specify one option per line
|
||||
|
||||
## max size of old space in megabytes
|
||||
#--max-old-space-size=4096
|
||||
|
||||
## do not terminate process on unhandled promise rejection
|
||||
--unhandled-rejections=warn
|
||||
|
||||
## restore < Node 16 default DNS lookup behavior
|
||||
--dns-result-order=ipv4first
|
||||
|
||||
## enable OpenSSL 3 legacy provider
|
||||
--openssl-legacy-provider
|
8
docker-compose.yml
Normal file
8
docker-compose.yml
Normal file
@ -0,0 +1,8 @@
|
||||
services:
|
||||
kibana:
|
||||
image: docker.elastic.co/kibana/kibana:7.17.18
|
||||
container_name: kibana
|
||||
volumes:
|
||||
- ./config:/usr/share/kibana/config
|
||||
ports:
|
||||
- 5601:5601
|
Loading…
Reference in New Issue
Block a user