⚙️ Self update Docker-based n8n with email approval and SSH

462 views · ⚙️ DevOps & CI/CD

Description

n8n Self-Updater Workflow

> An automated n8n workflow originally built for DigitalOcean-based n8n deployments, but fully compatible with any VPS or cloud hosting (e.g., AWS, Google Cloud, Hetzner, Linode, etc.) where n8n runs via Docker.

This workflow checks for the latest Docker image of n8n, notifies you via email for approval, and securely updates your n8n instance via SSH once approved.


How It Works

  1. Trigger: The workflow runs automatically every 3 days at 4 PM UTC (or manually if triggered).

  2. Check Version: It retrieves your current n8n Docker version and image digest via SSH.

  3. Compare: Fetches the remote digest from Docker Hub and compares it with the local one.

  4. Notify via Email: If a new update is available, an approval email is sent with details:

    • Current version
    • Local digest
    • Remote digest
    • What will happen after approval
  5. Approval Logic:

    • Approve → Workflow connects via SSH and updates the n8n container automatically.
    • Decline → Workflow ends; next check occurs in the next cycle.
  6. Auto Update Execution:

    • Creates (if missing) a update_docker.sh script on the server.

    • Runs it in the background (nohup) to:

      cd /opt/n8n-docker-caddy
      docker compose pull
      docker compose down
      docker compose up -d
    • The delay ensures n8n restarts only after workflow completion.


Requirements


How to Use

  1. Import the Workflow:

    • Copy the provided JSON file.
    • In your n8n instance → click Import Workflow → paste the JSON.
  2. Set Up Credentials:

    • Create two credentials in n8n:

      • SSH Password → Your server’s SSH credentials.
      • SMTP → Your email provider’s SMTP credentials.
  3. Edit the Email Node:

    • Replace:

      • fromEmail: info@yourdomain.com → with your email.
      • toEmail: youremail@yourdomain.com → with your desired recipient.
  4. Enable Auto Trigger (optional):

    • Go to the Schedule Trigger node and set your desired interval/time.
  5. Run the Workflow:

    • Test manually first.
    • Once verified, activate it for automatic checks.

Notes


Example Behavior


Author: Muhammad Anas Farooq

🔗 Nodes Used

Send Email, HTTP Request, SSH, Schedule Trigger

📥 Import

Download workflow.json and import into n8n: Workflow menu → Import from File

📖 Importing guide · 🔑 Credential setup