Selfhosting n8n

YouTube Video Tutorial

If you prefer a visual walkthrough, you can watch our step-by-step video guide here:

n8n is an extendable workflow automation tool that lets you connect anything to everything.

Docker Compose Setup

version: "3"
services:
  n8n:
    image: docker.n8n.io/n8nio/n8n:latest
    container_name: n8n
    ports:
      - "5678:5678"
    volumes:
      - ./n8n_data:/home/node/.n8n
    environment:
      - N8N_HOST=localhost
      - N8N_PORT=5678
      - N8N_PROTOCOL=http
    restart: unless-stopped