generated from Apodini/Template-Repository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-development.yml
46 lines (45 loc) · 1.31 KB
/
docker-compose-development.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
#
# This source file is part of the Collector-Analyst-Presenter Example open source project
#
# SPDX-FileCopyrightText: 2021 Paul Schmiedmayer and the project authors (see CONTRIBUTORS.md) <[email protected]>
#
# SPDX-License-Identifier: MIT
#
version: "3.9"
services:
jaeger:
image: "jaegertracing/all-in-one"
ports:
- "14250:14250"
- "16686:16686"
- "16685:16685"
gatewayprometheus:
image: "prom/prometheus"
ports:
- "9090:9090"
volumes:
- ${PWD}/Gateway/prometheus-development.yml:/etc/prometheus/prometheus.yml
command:
- '--config.file=/etc/prometheus/prometheus.yml'
extra_hosts:
- "host.docker.internal:host-gateway"
databaseprometheus:
image: "prom/prometheus"
ports:
- "9091:9090"
volumes:
- ${PWD}/Database/prometheus-development.yml:/etc/prometheus/prometheus.yml
command:
- '--config.file=/etc/prometheus/prometheus.yml'
extra_hosts:
- "host.docker.internal:host-gateway"
processingprometheus:
image: "prom/prometheus"
ports:
- "9092:9090"
volumes:
- ${PWD}/Processing/prometheus-development.yml:/etc/prometheus/prometheus.yml
command:
- '--config.file=/etc/prometheus/prometheus.yml'
extra_hosts:
- "host.docker.internal:host-gateway"