-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.prod.yml
82 lines (82 loc) · 1.96 KB
/
docker-compose.prod.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
version: "3"
services:
api:
ports:
- 80:3333
- 443:4444
volumes:
- /home/ibrahim/.ssl/pickstop/ca_root.crt:/home/os/os_api/ca_root.crt
depends_on:
- elasticsearch1
environment:
- HTTPS_PORT=${HTTPS_PORT}
logging:
options:
max-size: "25m"
max-file: "10"
restart: "unless-stopped"
elasticsearch1:
volumes:
- es-node-1-data:${ES_PATH}/data
- es-node-1-logs:${ES_PATH}/logs
- ./elastic/config_1/elasticsearch.yml:${ES_PATH}/config/elasticsearch.yml
logging:
options:
max-size: "25m"
max-file: "10"
restart: "unless-stopped"
elasticsearch2:
volumes:
- es-node-2-data:${ES_PATH}/data
- es-node-2-logs:${ES_PATH}/logs
- es-snapshot:/usr/share/elasticsearch/backup
- ./elastic/config_2/elasticsearch.yml:${ES_PATH}/config/elasticsearch.yml
logging:
options:
max-size: "25m"
max-file: "10"
restart: "unless-stopped"
elasticsearch3:
volumes:
- es-node-3-data:${ES_PATH}/data
- es-node-3-logs:${ES_PATH}/logs
- ./elastic/config_3/elasticsearch.yml:${ES_PATH}/config/elasticsearch.yml
logging:
options:
max-size: "25m"
max-file: "10"
restart: "unless-stopped"
kibana:
volumes:
- ./kibana/config/kibana_dev.yml:${KIBANA_PATH}/config/kibana.yml
logging:
options:
max-size: "25m"
max-file: "10"
restart: "unless-stopped"
auth_owner:
restart: unless-stopped
logging:
options:
max-size: "25m"
max-file: "10"
auth_user:
restart: unless-stopped
logging:
options:
max-size: "25m"
max-file: "10"
postgres_owner:
restart: unless-stopped
logging:
options:
max-size: "25m"
max-file: "10"
postgres_user:
restart: unless-stopped
logging:
options:
max-size: "25m"
max-file: "10"
pgadmin:
restart: unless-stopped