-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathdocker-compose.yml
75 lines (68 loc) · 1.77 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
services:
notebooks:
build: .
container_name: hello-ltr-notebook
ports:
- 8888:8888
environment:
- LTR_DOCKER=yes
links:
- elastic
- solr
elastic:
build:
context: ./notebooks/elasticsearch/.docker/es-docker/
dockerfile: Dockerfile
container_name: hello-ltr-elastic
environment:
- xpack.security.enabled=false
- xpack.security.enrollment.enabled=false
ports:
- 9200:9200
kibana:
build:
context: ./notebooks/elasticsearch/.docker/kb-docker/
dockerfile: Dockerfile
container_name: hello-ltr-kibana
expose:
- "5601"
ports:
- "5601:5601"
environment:
ELASTICSEARCH_HOSTS: "http://hello-ltr-elastic:9200"
ELASTICSEARCH_URL: "http://hello-ltr-elastic:9200"
SERVER_HOST: "0.0.0.0"
opensearch-node1:
build:
context: ./notebooks/opensearch/.docker/opensearch-docker/
dockerfile: Dockerfile
container_name: hello-ltr-opensearch
ports:
- "9201:9201"
environment:
- "SERVER_HOST=0.0.0.0"
- "OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m"
- "DISABLE_INSTALL_DEMO_CONFIG=true"
- "DISABLE_SECURITY_PLUGIN=true"
- "discovery.type=single-node"
osd-dashboards:
build:
context: ./notebooks/opensearch/.docker/osd-docker/
dockerfile: Dockerfile
container_name: hello-ltr-osd
expose:
- "5602"
ports:
- "5602:5602"
environment:
OPENSEARCH_HOSTS: "http://hello-ltr-opensearch:9201"
OPENSEARCH_URL: "http://hello-ltr-opensearch:9201"
SERVER_HOST: "0.0.0.0"
DISABLE_SECURITY_DASHBOARDS_PLUGIN: true
solr:
build:
context: ./notebooks/solr/
dockerfile: Dockerfile
container_name: hello-ltr-solr
ports:
- 8983:8983