-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathdocker-compose.local.yml
96 lines (87 loc) · 2.56 KB
/
docker-compose.local.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
version: "3.8"
services:
postgesql:
image: postgres:13-alpine
container_name: mail_postgesql
ports:
- "5432:5432"
restart: always
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=mails_db
volumes:
- ./pgdata:/var/lib/postgresql/data
networks:
- microservice_network
rabbitmq:
# There is a prebuilt RabbitMQ image; see
# https://hub.docker.com/_/rabbitmq/ for details.
# This variant is built on Alpine Linux (it's smaller) and includes
# the management UI.
image: 'rabbitmq:3.6-management-alpine'
# These ports are exposed on the host; 'hostport:containerport'.
# You could connect to this server from outside with the *host's*
# DNS name or IP address and port 5672 (the left-hand side of the
# colon).
ports:
# The standard AMQP protocol port
- '5672:5672'
# HTTP management UI
- '15672:15672'
# Run this container on a private network for this application.
# This is necessary for magic Docker DNS to work: other containers
# also running on this network will see a host name "rabbitmq"
# (the name of this section) and the internal port 5672, even though
# that's not explicitly published above.
networks:
- microservice_network
prometheus:
container_name: prometheus_container
image: prom/prometheus
volumes:
- ./docker/monitoring/prometheus-local.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:
- microservice_network
node_exporter:
container_name: node_exporter_container
image: prom/node-exporter
ports:
- '9101:9100'
networks:
- microservice_network
grafana:
container_name: grafana_container
image: grafana/grafana
ports:
- '3000:3000'
networks:
- microservice_network
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:
- microservice_network
networks:
microservice_network:
driver: bridge