We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9987d04 commit 8e7640fCopy full SHA for 8e7640f
elastic/docker-compose.yaml
@@ -0,0 +1,14 @@
1
+version: '3.5'
2
+
3
+services:
4
+ elastic:
5
+ image: elasticsearch:8.6.2
6
+ hostname: elastic
7
+ container_name: elastic
8
+ restart: always
9
+ ports:
10
+ - "9200:9200"
11
+ - "9300:9300"
12
+ environment:
13
+ - |
14
+ discovery.type=single-node
elastic/readme.md
@@ -0,0 +1,9 @@
+# Elasticsearch
+https://hub.docker.com/_/elasticsearch
+https://www.elastic.co/guide/en/elasticsearch/reference/7.5/docker.html
+## Elastic API
+https://www.elastic.co/guide/en/elasticsearch/reference/current/rest-apis.html
0 commit comments