Back to Apps
n8n.io (SQLite)

Deploy n8n.io (SQLite) on Your Own Server

Node based workflow automation tool

πŸ—„οΈ Databases⚑ Automation

Want to deploy n8n.io (SQLite) on your server faster? Try Senate with one-command setup, automatic HTTPS and monitoring.

Get Started

What is n8n.io (SQLite)?

n8n is an open source workflow automation tool. This version uses the SQLite database (instead of PostgreSQL) so is simpler and uses less resources (but won't horizontally scale). If you want to invite members and enable password resets, you must enter SMTP details.

Self-Host n8n.io (SQLite)

Follow these steps to deploy on your own server.

1

Install Docker

Skip this step if Docker is already installed on your server.

curl -fsSL https://get.docker.com | sh
2

Configure

Customize the settings below. Defaults work for most cases.

Application
3

Deploy

Copy the configuration and run it on your server.

services:
  n8n_io_sqlite:
    image: n8nio/n8n:1.77.0
    environment:
      GENERIC_TIMEZONE: UTC
      N8N_DIAGNOSTICS_ENABLED: "false"
      N8N_EDITOR_BASE_URL: https://n8n_io_sqlite.your-domain.com
      N8N_EMAIL_MODE: smtp
      N8N_HOST: n8n_io_sqlite.your-domain.com
      N8N_PROTOCOL: https
      N8N_SMTP_HOST: ""
      N8N_SMTP_PASS: ""
      N8N_SMTP_PORT: ""
      N8N_SMTP_SENDER: ""
      N8N_SMTP_SSL: "true"
      N8N_SMTP_USER: ""
      NODE_ENV: production
      TZ: UTC
      WEBHOOK_URL: https://n8n_io_sqlite.your-domain.com
    volumes:
      - n8n_io_sqlite:/home/node/.n8n
volumes:
  n8n_io_sqlite: {}

Then run:

docker compose up -d
4

Access

Once started, access your app at http://localhost:5678

Why Self-Host n8n.io (SQLite)?

Full Data Ownership

Your data stays on your servers. No third-party access.

No Monthly Fees

Pay only for your server. No per-seat or usage charges.

Complete Control

Customize, backup, and scale on your own terms.

Privacy & Compliance

Meet GDPR, HIPAA, or internal security requirements.

Technical Details

Docker Image

n8nio/n8n:${N8N_VERSION}

Want to go faster?

Try Senate! Senate handles Docker, HTTPS, updates, and monitoring for you. Deploy any of our 300+ apps with a single command.

Install on any Linux server:

sh -c "$(curl -sSL https://get.senate.sh)"