n8n

n8n workflow automation tool

5678
Default Port
1
Services
8.5/20
Complexity
Low
Memory Usage
Configuration

Installation Command

blastdock init n8n

Template Overview

Everything you need to deploy N8n with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

N8n
n8nio/n8n:latest
Categories
Other
Resource Requirements
CPU: Low, Memory: Low , Storage Required

Quick Commands

blastdock init Initialize new project
blastdock deploy Deploy the application
blastdock status Check deployment status
blastdock logs View application logs

Quick Installation

Get N8n up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy N8n with:

Terminal
blastdock init n8n

Interactive mode:

Terminal
blastdock init n8n -i

What's Included

N8n
Container service

BlastDock Commands

blastdock templates List available templates
blastdock status project Check deployment status
blastdock logs project View application logs
blastdock stop project Stop deployment

Configuration Options

Customize your N8n installation with these configuration options.

1
Required Fields
2
Optional Fields
0
Auto-Generated Passwords

N8n Port

n8n web interface port

port
Default: 5678
Required: Yes

Timezone

Timezone

string
Default: UTC
Required: No

Webhook Url

Webhook URL (optional)

domain
Default:
Required: No

Docker Compose

Complete Docker Compose configuration for N8n deployment.

1
Services
1
Volumes
1
Networks
1
Exposed Ports
docker-compose.yml
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