Docker Deployment
Build Image
The Docker image uses a multi-stage build with Alpine Linux for minimal footprint.
Run Container
# Using Makefile (port 2112)
make run-docker
# Manual with custom configuration
docker run -d \
--name nbu_exporter \
-p 2112:2112 \
-v $(pwd)/config.yaml:/etc/nbu_exporter/config.yaml \
-v $(pwd)/log:/var/log/nbu_exporter \
nbu_exporter
Docker Compose
version: '3.8'
services:
nbu_exporter:
image: nbu_exporter:latest
container_name: nbu_exporter
ports:
- "2112:2112"
volumes:
- ./config.yaml:/etc/nbu_exporter/config.yaml:ro
- ./log:/var/log/nbu_exporter
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:2112/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
Docker Compose with OpenTelemetry
See the OpenTelemetry Setup Guide for a complete Docker Compose stack with OpenTelemetry Collector and Jaeger.