n8n workflow automation tool
Everything you need to deploy N8n 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 N8n up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy N8n with:
blastdock init n8n
Interactive mode:
blastdock init n8n -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 N8n installation with these configuration options.
n8n web interface port
Timezone
Webhook URL (optional)
Complete Docker Compose configuration for N8n deployment.
version: '3.8'
services:
n8n:
image: n8nio/n8n:latest
container_name: {{ project_name }}_n8n
restart: unless-stopped
ports:
- "5678"
environment:
0: GENERIC_TIMEZONE={{ timezone }}
1: WEBHOOK_URL={{ webhook_url }}
2: N8N_METRICS=true
volumes:
- /home/node/.n8n
networks:
- n8n_network
volumes:
n8n_data:
driver: local
networks:
n8n_network:
driver: bridge