-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
64 lines (58 loc) · 1.27 KB
/
docker-compose.yml
File metadata and controls
64 lines (58 loc) · 1.27 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
54
55
56
57
58
59
60
61
62
63
64
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:
- 59200:9200
kibana:
image: kibana:8.7.0
environment:
- ELASTICSEARCH_HOSTS=http://elasticsearch:9200
ports:
- 55601:5601
depends_on:
- elasticsearch
redis:
image: redis:7.0.11
ports:
- "56379:6379"
environment:
- ALLOW_EMPTY_PASSWORD=yes
postgres:
image: postgres:15.2
ports:
- "55432:5432"
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
command: ["postgres", "-c", "max_connections=100"]
message-db:
image: ethangarofolo/message-db:1.3.1
ports:
- "0.0.0.0:55433:5432"
mssql:
image: mcr.microsoft.com/mssql/server:2022-latest
ports:
- "51433:1433"
environment:
ACCEPT_EULA: Y
SA_PASSWORD: "Protean123!"
MSSQL_PID: "Developer"
volumes:
elasticsearch-data:
driver: local