-
Notifications
You must be signed in to change notification settings - Fork 10
/
docker-compose.yml
55 lines (50 loc) · 1.04 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
version: "3.9"
services:
elasticsearch:
image: elasticsearch:8.7.0
environment:
- xpack.security.enabled=false
- discovery.type=single-node
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ulimits:
memlock:
soft: -1
hard: -1
nofile:
soft: 65536
hard: 65536
cap_add:
- IPC_LOCK
volumes:
- elasticsearch-data:/usr/share/elasticsearch/data
ports:
- 9200:9200
kibana:
image: kibana:8.7.0
environment:
- ELASTICSEARCH_HOSTS=http://elasticsearch:9200
ports:
- 5601:5601
depends_on:
- elasticsearch
redis:
image: redis:7.0.11
ports:
- "6379:6379"
environment:
- ALLOW_EMPTY_PASSWORD=yes
postgres:
image: postgres:15.2
ports:
- "5432:5432"
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
message-db:
image: ethangarofolo/message-db:1.2.6
ports:
- "0.0.0.0:5433:5432"
volumes:
elasticsearch-data:
driver: local