mirror of
https://github.com/akvorado/akvorado.git
synced 2025-12-11 22:14:02 +01:00
Add ability to enable the demo flows just with a profile instead of modifying .env. Add more instructions on how to use Docker Compose and how to hack on the console.
27 lines
708 B
YAML
27 lines
708 B
YAML
---
|
|
services:
|
|
akvorado-exporter-1: &exporter
|
|
extends:
|
|
file: versions.yml
|
|
service: akvorado
|
|
profiles:
|
|
- demo
|
|
restart: unless-stopped
|
|
command: demo-exporter http://akvorado-orchestrator:8080#0
|
|
depends_on:
|
|
akvorado-inlet:
|
|
condition: service_healthy
|
|
akvorado-outlet:
|
|
condition: service_healthy
|
|
labels:
|
|
- metrics.port=8080
|
|
akvorado-exporter-2:
|
|
<<: *exporter
|
|
command: demo-exporter http://akvorado-orchestrator:8080#1
|
|
akvorado-exporter-3:
|
|
<<: *exporter
|
|
command: demo-exporter http://akvorado-orchestrator:8080#2
|
|
akvorado-exporter-4:
|
|
<<: *exporter
|
|
command: demo-exporter http://akvorado-orchestrator:8080#3
|