Traefik - Modern reverse proxy and load balancer
Everything you need to deploy Traefik 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 Traefik up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Traefik with:
blastdock init traefik
Interactive mode:
blastdock init traefik -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 Traefik installation with these configuration options.
HTTP port
HTTPS port
Dashboard port
Dashboard username
Dashboard password
Complete Docker Compose configuration for Traefik deployment.
version: '3.8'
services:
traefik:
image: traefik:v2.9
container_name: {{ project_name }}_traefik
restart: unless-stopped
ports:
- "80"
- "443"
- "8080"
volumes:
- /etc/traefik
- /var/run/docker.sock:ro
networks:
- traefik_network
networks:
traefik_network:
driver: bridge