-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdocker-compose.traces.yaml
67 lines (62 loc) · 1.67 KB
/
docker-compose.traces.yaml
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
version: "3.9"
networks:
default:
name: observability-network
external: true
services:
######################################################################################
######################################################################################
############################# GRAFANA TEMPO TRACES ###################################
######################################################################################
######################################################################################
tempo1:
profiles:
- grafana
container_name: Tempo-1
image: grafana/tempo:1.5.0
command: "-target=scalable-single-binary -config.file=/etc/tempo.yaml"
volumes:
- ./tempo/tempo.yaml:/etc/tempo.yaml
restart: always
networks:
default:
aliases:
- tempo
depends_on:
- minio
labels:
namespace: monitoring
tempo2:
profiles:
- grafana
container_name: Tempo-2
image: grafana/tempo:1.5.0
command: "-target=scalable-single-binary -config.file=/etc/tempo.yaml"
volumes:
- ./tempo/tempo.yaml:/etc/tempo.yaml
restart: always
depends_on:
- minio
networks:
default:
aliases:
- tempo
labels:
namespace: monitoring
tempo3:
profiles:
- grafana
container_name: Tempo-3
image: grafana/tempo:1.5.0
command: "-target=scalable-single-binary -config.file=/etc/tempo.yaml"
volumes:
- ./tempo/tempo.yaml:/etc/tempo.yaml
restart: always
depends_on:
- minio
networks:
default:
aliases:
- tempo
labels:
namespace: monitoring