-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathdocker-compose.local.yaml
More file actions
129 lines (116 loc) · 2.55 KB
/
Copy pathdocker-compose.local.yaml
File metadata and controls
129 lines (116 loc) · 2.55 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
version: "3.8"
services:
nginx:
container_name: nginx_microservice
ports:
- 8080:8080
- 443:443
build:
context: ./nginx
dockerfile: Dockerfile
networks:
- nats
nats-streaming:
container_name: nats-streaming
image: nats-streaming:latest
ports:
- "8222:8222"
- "4222:4222"
- "6222:6222"
networks: [ "nats" ]
restart: always
command: [
'-p',
'4222',
'-m',
'8222',
'-hbi',
'5s',
'-hbt',
'5s',
'-hbf',
'2',
'-SD',
'-cid',
'microservice',
]
mails_postgesql:
image: postgres:13-alpine
container_name: mails_postgesql
expose:
- "5432"
ports:
- "5432:5432"
restart: always
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=mails_db
- POSTGRES_HOST=5432
command: -p 5432
volumes:
- ./mails_pgdata:/var/lib/postgresql/data
networks: [ "nats" ]
mailhog:
container_name: mailhog
image: mailhog/mailhog:latest
ports:
- "1025:1025"
- "8025:8025"
restart: always
networks: [ "nats" ]
redis:
image: redis:6-alpine
restart: always
container_name: user_redis
ports:
- "6379:6379"
networks: [ "nats" ]
prometheus:
container_name: prometheus_container
restart: always
image: prom/prometheus
volumes:
- ./monitoring/prometheus.yml:/etc/prometheus/prometheus.yml:Z
command:
- '--config.file=/etc/prometheus/prometheus.yml'
- '--storage.tsdb.path=/prometheus'
- '--storage.tsdb.retention=20d'
- '--web.console.libraries=/usr/share/prometheus/console_libraries'
- '--web.console.templates=/usr/share/prometheus/consoles'
ports:
- '9090:9090'
networks: [ "nats" ]
node_exporter:
container_name: node_exporter_container
restart: always
image: prom/node-exporter
ports:
- '9101:9100'
networks: [ "nats" ]
grafana:
container_name: grafana_container
restart: always
image: grafana/grafana
ports:
- '3000:3000'
networks: [ "nats" ]
jaeger:
container_name: jaeger_container
restart: always
image: jaegertracing/all-in-one:1.21
environment:
- COLLECTOR_ZIPKIN_HTTP_PORT=9411
ports:
- 5775:5775/udp
- 6831:6831/udp
- 6832:6832/udp
- 5778:5778
- 16686:16686
- 14268:14268
- 14250:14250
- 9411:9411
networks: [ "nats" ]
networks:
nats:
name: nats