18 lines
345 B
YAML
18 lines
345 B
YAML
version: '3.7'
|
|
|
|
services:
|
|
mikrotik-exporter:
|
|
build:
|
|
context: .
|
|
env_file: .env
|
|
environment:
|
|
- PROMETHEUS_BEARER_TOKEN=ZwRZm7Qe6J
|
|
network_mode: host
|
|
prometheus:
|
|
network_mode: "host"
|
|
image: prom/prometheus:latest
|
|
command:
|
|
- --config.file=/config/prometheus.yml
|
|
volumes:
|
|
- ./config:/config:ro
|