-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.local.yml
98 lines (89 loc) · 2.37 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
97
98
version: "3.8"
services:
redis:
image: redis:6.2.5-alpine
container_name: redis
hostname: redis
restart: always
ports:
- "6379:6379"
redis-commander:
container_name: redis-commander
hostname: redis-commander
image: rediscommander/redis-commander
restart: always
environment:
- REDIS_HOSTS=local:redis:6379:0
ports:
- "8081:8081"
postgresql:
image: postgres:13.4-alpine
container_name: postgesql
hostname: postgesql
ports:
- "5432:5432"
restart: always
environment:
POSTGRES_USER: gabriel
POSTGRES_PASSWORD: leirbag123
POSTGRES_DB: users
volumes:
- db-data:/var/lib/postgresql/data
pgadminer4:
container_name: pgadminer4
image: dpage/pgadmin4
restart: always
environment:
PGADMIN_DEFAULT_EMAIL: [email protected]
PGADMIN_DEFAULT_PASSWORD: email
ports:
- "80:80"
prometheus:
container_name: prometheus_container
image: prom/prometheus
restart: always
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"
node_exporter:
container_name: node_exporter_container
image: prom/node-exporter
restart: always
ports:
- "9101:9100"
jaeger:
container_name: jaeger_container
image: jaegertracing/all-in-one
restart: always
environment:
- COLLECTOR_ZIPKIN_HTTP_PORT=:9411
ports:
- "5775:5775/udp"
- "6831:6831/udp"
- "6832:6832/udp"
- "5778:5778"
- "16686:16686"
- "14250:14250"
- "14268:14268"
- "14269:14269"
- "9411:9411"
minio:
container_name: minio
image: minio/minio
restart: always
ports:
- "9000:9000"
- "9001:9001"
environment:
- MINIO_ROOT_USER=gabriel
- MINIO_ROOT_PASSWORD=leirbag123
command: server /data --console-address ":9001"
volumes:
db-data: