Jaeger - Distributed tracing system
Everything you need to deploy Jaeger with BlastDock
One command deployment
Production-ready security
Customizable settings
Ready to scale up
blastdock init
Initialize new project
blastdock deploy
Deploy the application
blastdock status
Check deployment status
blastdock logs
View application logs
Get Jaeger up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Jaeger with:
blastdock init jaeger
Interactive mode:
blastdock init jaeger -i
blastdock templates
List available templates
blastdock status project
Check deployment status
blastdock logs project
View application logs
blastdock stop project
Stop deployment
Customize your Jaeger installation with these configuration options.
Web UI port
Collector HTTP port
Complete Docker Compose configuration for Jaeger deployment.
version: '3.8'
services:
jaeger:
image: jaegertracing/all-in-one:latest
container_name: {{ project_name }}_jaeger
restart: unless-stopped
ports:
- "16686"
- "14268"
- "6831/udp"
environment:
- COLLECTOR_ZIPKIN_HOST_PORT=: 9411
networks:
- jaeger_network
networks:
jaeger_network:
driver: bridge