version: '3.4'
services:
kafka_exporter:
image: danielqsj/kafka-exporter
command: --kafka.server=xx.xx.xx.xx:9092 --kafka.server=xx.xx.xx.xx:9092
ports:
- 9308:9308
links:
- prometheus
prometheus:
image: prom/prometheus
ports:
- 9090:9090
volumes:
- ./mount/prometheus:/etc/prometheus
command: --config.file=/etc/prometheus/prometheus.yml
Выше мой файл docker-compose.yml
.
Я могу раскрутить оба изображения.
Однако я не могу получить доступ к localhost:9308
( kafka_Exporter ) из localhost:9090
(Прометей)
Нужно ли связывать / сетевые образы?