Grafana Loki - Log aggregation system
Everything you need to deploy Grafana-loki 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 Grafana-loki up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Grafana-loki with:
blastdock init grafana-loki
Interactive mode:
blastdock init grafana-loki -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 Grafana-loki installation with these configuration options.
Loki HTTP port
Complete Docker Compose configuration for Grafana-loki deployment.
version: '3.8'
services:
loki:
image: grafana/loki:latest
container_name: {{ project_name }}_loki
restart: unless-stopped
ports:
- "3100"
volumes:
- /loki
networks:
- loki_network
promtail:
image: grafana/promtail:latest
container_name: {{ project_name }}_promtail
restart: unless-stopped
volumes:
- /var/log
- /etc/promtail
networks:
- loki_network
volumes:
loki_data:
driver: local
promtail_data:
driver: local
networks:
loki_network:
driver: bridge