forked from o19s/hello-ltr
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdocker-compose.yml
43 lines (39 loc) · 896 Bytes
/
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
version: '3'
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
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"
solr:
build:
context: ./notebooks/solr/
dockerfile: Dockerfile
container_name: hello-ltr-solr
ports:
- 8983:8983