Page 1: Basic Installation and Setup

1. Basic n8n Installation and Setup

n8n is a powerful open-source workflow automation tool that connects workflows, tasks, and data across various apps and services. To get started, installing n8n via Docker is the most recommended method.

1.1. Installing n8n with Docker

First, ensure Docker is installed on your system. Use the following command to run the n8n container:

docker run -it --rm \
    -p 5678:5678 \
    -v ~/.n8n:/home/node/.n8n \
    --name n8n \
    n8nio/n8n

Explanation:

1.2. Accessing the n8n Web UI

Once the container is started, open your web browser and navigate to the following address to access the n8n interface:

http://localhost:5678

Tip: You will be prompted to create an administrator user account during the initial setup.