-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (41 loc) · 952 Bytes
/
docker-compose.yml
File metadata and controls
42 lines (41 loc) · 952 Bytes
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
version: '3.8'
services:
postgres:
image: postgres:13.5
restart: always
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=kashmar552
volumes:
- postgres:/var/lib/postgresql/data
ports:
- '5432:5432'
# elasticsearch:
# image: elasticsearch:8.8.1
# container_name: elasticsearch
# volumes:
# - elasticsearch-data:/usr/share/elasticsearch/data
# ports:
# - 9200:9200
# environment:
# - ELASTIC_PASSWORD=kashmar552
# - discovery.type=single-node
# ulimits:
# memlock:
# soft: -1
# hard: -1
# kibana:
# depends_on:
# - elasticsearch
# image: kibana:8.8.1
# container_name: kibana
# volumes:
# - kibana-data:/usr/share/kibana/data
# ports:
# - 5601:5601
# environment:
# - ELASTICSEARCH_HOSTS=http://elasticsearch:9200
volumes:
postgres:
# elasticsearch-data:
# kibana-data: