-
Notifications
You must be signed in to change notification settings - Fork 0
/
grafana-seq-jaeger-prometheus.yml
65 lines (59 loc) · 1.11 KB
/
grafana-seq-jaeger-prometheus.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
version: "3.7"
services:
grafana:
image: grafana/grafana
container_name: grafana
restart: unless-stopped
ports:
- 3000:3000
networks:
- conterone
# volumes:
# - grafana:/var/lib/grafana
# prometheus:
# build: ./prometheus
# container_name: prometheus
# restart: unless-stopped
# ports:
# - '9090:9090'
# networks:
# - conterone
# volumes:
# - prometheus:/prometheus
jaeger:
image: jaegertracing/all-in-one
container_name: jaeger
restart: unless-stopped
ports:
- 5775:5775/udp
- 5778:5778
- 6831:6831/udp
- 6832:6832/udp
- 9411:9411
- 14268:14268
- 16686:16686
networks:
- conterone
seq:
image: datalust/seq
container_name: seq
restart: unless-stopped
environment:
- ACCEPT_EULA=Y
ports:
- 5341:80
networks:
- conterone
# volumes:
# - seq:/data
networks:
conterone:
name: counterone-network
external: true
# volumes:
# grafana:
# driver: local
# prometheus:
# driver: local
# seq:
# driver: local