This repository has been archived by the owner on Jul 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
68 lines (66 loc) · 1.62 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
version: "3.7"
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:8.2.0
container_name: elasticsearch
environment:
- discovery.seed_hosts=127.0.0.1
- discovery.type=single-node
- bootstrap.memory_lock=true
- xpack.security.enabled=false
ports:
- "9200:9200"
- "9300:9300"
networks:
tix-factory:
aliases:
- elasticsearch
- es.tixfactory.systems
logging:
options:
max-size: "10m"
max-file: "3"
volumes:
- durable-storage:/usr/share/elasticsearch/data
restart: always
kibana:
image: docker.elastic.co/kibana/kibana:8.2.0
container_name: kibana
networks:
tix-factory:
aliases:
- kibana
- logging.tixfactory.systems
logging:
options:
max-size: "10m"
max-file: "3"
ports:
- "5601:5601"
volumes:
- ./kibana.yml:/usr/share/kibana/config/kibana.yml
restart: always
logging-service:
image: tixfactory/logging-service:latest
container_name: logging-service
environment:
- LoggingServiceAllowedIpAddressesCsv=127.0.0.1 # ME: Replace this IP address with public facing IP address!
- ElasticSearchEndpoint=http://es.tixfactory.systems:9200/tix-factory
networks:
tix-factory:
aliases:
- logging-service
- logging.services.tixfactory.systems
logging:
options:
max-size: "10m"
max-file: "3"
ports:
- "80:80"
restart: always
networks:
tix-factory:
name: tix-factory
volumes:
durable-storage:
driver: local