-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-infra-dev.yaml
More file actions
59 lines (52 loc) · 1 KB
/
docker-compose-infra-dev.yaml
File metadata and controls
59 lines (52 loc) · 1 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
version: '3.8'
services:
mysqldb:
image: mysql:latest
env_file:
- .env
ports:
- "3306:3306"
volumes:
- mysqldb-data:/var/lib/mysql
networks:
- infra-net
rabbitmq:
image: rabbitmq:3-management
ports:
- "5672:5672"
- "61613:61613"
- "15672:15672"
networks:
- infra-net
grafana:
image: grafana/grafana:latest
ports:
- "3000:3000"
networks:
- infra-net
loki:
image: grafana/loki:latest
ports:
- "3100:3100"
volumes:
- ./lokiconfig.yml:/etc/loki/local-config.yaml
command: -config.file=/etc/loki/local-config.yaml
networks:
- infra-net
prometheus:
image: prom/prometheus:latest
ports:
- "9090:9090"
volumes:
- ./prometheus.yml:/etc/prometheus/prometheus.yml
- prometheus_data:/prometheus
networks:
- infra-net
volumes:
mysqldb-data:
driver: local
prometheus_data:
driver: local
networks:
infra-net:
driver: bridge