forked from Bitergia/prosoul
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
37 lines (34 loc) · 1.03 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
version: "2"
services:
prosoul:
image: bitergia/prosoul
ports:
- "8000:8000"
depends_on:
- kibiter
- elasticsearch
environment:
- ALLOWED_HOSTS=prosoul localhost 127.0.0.1
- ES_URL=https://admin:admin@elasticsearch:9200
- KIBITER_URL=https://kibiter:80
elasticsearch:
image: bitergia/elasticsearch:6.8.6-secured
command: elasticsearch -Enetwork.bind_host=0.0.0.0 -Ehttp.max_content_length=2000mb
ports:
- 9200:9200
environment:
- ES_JAVA_OPTS=-Xms2g -Xmx2g
kibiter:
restart: on-failure:5
image: bitergia/kibiter:secured-v6.8.6-3
environment:
- PROJECT_NAME=Demo
- NODE_OPTIONS=--max-old-space-size=1000
- ELASTICSEARCH_USER=kibanaserver
- ELASTICSEARCH_PASSWORD=kibanaserver
- ELASTICSEARCH_URL=["https://elasticsearch:9200"]
- LOGIN_SUBTITLE=If you have forgotten your username or password ...
links:
- elasticsearch
ports:
- 5601:5601