en:linux:n8n_installation

Approved 2024/02/05 16:48 by psycore (version: 1) | Approver: psycore

n8n installation and operation

This method is not recommended as no HTTPS is used. Here I show an alternative way to install.

n8n is a free and source-available workflow automation tool.

n8n can be operated with Docker Compose.

docker pull n8nio/n8n
docker run -it --rm --name n8n -p 1234:1234 -v ~/.n8n:/home/node/.n8n n8nio/n8n
docker run -t -d --rm --name n8n -p 1234:1234 \
       -e GENERIC_TIMEZONE="Europe/Berlin" \
       -e TZ="Europe/Berlin" -v ~/.n8n:/home/node/.n8n n8nio/n8n
docker pull n8nio/n8n
docker ps -a
docker stop [container_id]
docker rm [container_id]
docker run --name=[container_name] [options] -d n8nio/n8n
  • en/linux/n8n_installation.txt
  • Last modified: 2024/02/05 16:48
  • by psycore