-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose-prod.yaml
83 lines (72 loc) · 1.66 KB
/
docker-compose-prod.yaml
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
83
version: '3.6'
services:
sauronclient:
image: sauron-client:latest
ports:
- "5000:5000"
sauronzabbixapi:
image: sauron-zabbix-api:latest
environment:
ASPNETCORE_ENVIRONMENT: Prod
ports:
- "5011:80"
influxdb:
image: "influxdb:latest"
ports:
- "8086:8086"
- "8082:8082"
- "8089:8089/udp"
grafana:
image: grafana/grafana:latest
ports:
- "3000:3000"
depends_on:
- influxdb
environment:
GF_SMTP_ENABLED: 'true'
GF_SMTP_HOST: 'smtp.yandex.com:465'
GF_SMTP_USER: 'bilalislam815@yandex.com'
GF_SMTP_PASSWORD: 'jnwuzothkbfslvtu'
GF_SMTP_FROM_ADDRESS: 'bilalislam815@yandex.com'
GF_LOG_MODE: "console file"
GF_INSTALL_PLUGINS: grafana-clock-panel,grafana-piechart-panel,grafana-polystat-panel
TERM: linux
sauroninfluxapi:
image: sauron-influx-api:latest
ports:
- "5010:80"
environment:
- ASPNETCORE_ENVIRONMENT=Prod
sauronmessagebridge:
image: sauron-messagebridge-webhook:latest
ports:
- "8080:8080"
environment:
ENV_FILE: prod
sauronanakinconsumer:
image: sauron-anakin-consumer:latest
ports:
- "8080:8080"
environment:
ENV_FILE: prod
saurontnmonapi:
image: sauron-tnmon-api:latest
ports:
- "8002:80"
environment:
- ASPNETCORE_ENVIRONMENT=Prod
saurontnmonclient:
image: sauron-tnmon-client:latest
ports:
- "3000:3000"
environment:
- NODE_ENV= production
rabbitmq:
image: rabbitmq:3-management
ports:
- '5672:5672'
- '15672:15672'
redis:
image: redis
ports:
- '6379:6379'