⚠️ These licenses require changing the n8n Web licensing validation HERE HOW DO IT

Choose Your Guide

Use our pre-patched Docker image ghcr.io/n8nsh/n8n:latest for a ready-to-use installation. This is the recommended method for new setups.

Configuration Helper

Configure your container name and image below. These values will be automatically used in all copy buttons throughout the guide.

ℹ️ Changes will be applied automatically to all copy buttons in the guide.

Docker Image Method (Recommended)

This is the easiest and fastest way to get started. The image is already patched.

1. Install Docker

Install Docker on your system following the official instructions.

2. Run the Pre-patched Container

Use the pre-patched Docker image that comes with the license already configured. No additional patching required.

Docker Run (Simple)

Start the container with the pre-patched image:

docker run -d --name [container_name] -p 5678:5678 [image_name]

The image ([image_name]) is already configured as ghcr.io/n8nsh/n8n:latest in the Configuration Helper.

Docker Compose

Create a docker-compose.yml file:

version: '3.7'

services:
  n8n:
    image: ghcr.io/n8nsh/n8n:latest # Pre-patched image
    container_name: n8n
    restart: always
    ports:
      - "5678:5678"
    environment:
      # Variables
      # ... add more env
    volumes:
      - n8n_data:/home/node/.n8n

volumes:
  n8n_data:

Start the docker-compose:

docker-compose up -d

3. Activate the License

No restart needed! The container is already patched. Simply access the web interface.

Go to Settings.

Enter your N8SH-Entomai license. (If you don't have one, check the "Get Free License" tab).

Video Tutorial (Both Methods)

Changelog

Version 1.1

  • Automated SDK license configuration - no longer need to set N8N_LICENSE_SERVER_URL when creating Docker containers
  • Patcher automatically changes config.server settings only for SDK license, leaving other instance configurations untouched
  • Patcher automatically locates the SDK license file inside the container