commit 0551a93e5c9a3b5e0751c7d378358428682a26da Author: wandoubaba Date: Wed May 1 11:44:47 2024 +0800 kibana容器服务 diff --git a/config/kibana.yml b/config/kibana.yml new file mode 100644 index 0000000..d0e6f4a --- /dev/null +++ b/config/kibana.yml @@ -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" \ No newline at end of file diff --git a/config/node.options b/config/node.options new file mode 100644 index 0000000..abcb40a --- /dev/null +++ b/config/node.options @@ -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 diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..15fabae --- /dev/null +++ b/docker-compose.yml @@ -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