We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d71d9b3 commit 254696aCopy full SHA for 254696a
2 files changed
axcell/config.py
@@ -15,7 +15,7 @@
15
goldtags_dump = data / "dumps" / "goldtags-2019.10.15_2227.json.gz"
16
17
18
-elastic = dict(hosts=['localhost'], timeout=20)
+elastic = dict(hosts=['127.0.0.1'], timeout=20)
19
grobid = dict(host='grobid')
20
21
arxiv = data/'arxiv'
docker-compose.yml
@@ -0,0 +1,18 @@
1
+version: '3'
2
+services:
3
+ # search engine
4
+ elasticsearch:
5
+ image: docker.elastic.co/elasticsearch/elasticsearch-oss:6.7.1
6
+ entrypoint:
7
+ - elasticsearch
8
+ - -Ehttp.port=9200
9
+ - -Etransport.host=localhost
10
+ - -Ehttp.host=0.0.0.0
11
+ - -Ebootstrap.system_call_filter=false
12
+ - -Ehttp.cors.enabled=true
13
+ - -Ehttp.cors.allow-origin=*
14
+ - -Ehttp.cors.allow-headers=*
+ - -Ehttp.cors.allow-credentials=true
+ user: elasticsearch
+ ports:
+ - '127.0.0.1:9200:9200'
0 commit comments