-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
53 lines (48 loc) · 1.17 KB
/
docker-compose.yml
File metadata and controls
53 lines (48 loc) · 1.17 KB
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
version: '2.3'
services:
dashboard:
build:
context: .
# target: dev
args:
elasticsearch_url_prefix: ${ELASTICSEARCH_URL_PREFIX}
ports:
- 8080:8080
environment:
REACT_APP_ELASTICSEARCH_URL_PREFIX: ${ELASTICSEARCH_URL_PREFIX}
# volumes:
# - .:/usr/src/app
depends_on:
# - kinto
- elasticsearch
# kinto:
# image: kinto/kinto-server:11.1.0
# ports:
# - 8888:8888
# volumes:
# - ./docker/kinto-config:/etc/kinto
# depends_on:
# - postgres
# - elasticsearch
#
# postgres:
# image: postgres:10-alpine
# environment:
# POSTGRES_USER: weihnachtsmarkt
# POSTGRES_PASSWORD: PASSWORD
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch-oss:6.4.2
ports:
- 9200:9200
environment:
discovery.type: single-node
http.cors.enabled: "true"
http.cors.allow-origin: /https?:\/\/localhost(:[0-9]+)?/
# volumes:
# - ./docker/elasticsearch-data:/usr/share/elasticsearch/data
kibana:
image: docker.elastic.co/kibana/kibana-oss:6.4.2
ports:
- 5601:5601
depends_on:
- elasticsearch