n8n is an extendable workflow automation tool. With a fair-code distribution model, n8n will always have visible source code, be available to self-host, and allow you to add your own custom functions, logic and apps. n8n's node-based approach makes it highly versatile, enabling you to connect anything to everything. -https://github.com/n8n-io/n8n
# The top level domain to serve from
DOMAIN_NAME=yoursite.com
# The subdomain to serve from
SUBDOMAIN=n8n
# DOMAIN_NAME and SUBDOMAIN combined decide where n8n will be reachable from
# above example would result in: https://n8n.bridgethings.com
# Optional timezone to set which gets used by Cron-Node by default
# If not set New York time will be used
GENERIC_TIMEZONE=asia/kolkata
# The email address to use for the SSL certificate creation
SSL_EMAIL=email@gmail.com
Create data folder
sudo docker volume create n8n_data
Create a volume for the Traefik data, This is defined as traefik_data.
sudo docker volume create traefik_data
Run Docker
sudo docker compose up -d
Reference
Updating n8n
Read n8n documentation for fill instrctions
# Pull latest (stable) version
docker pull docker.n8n.io/n8nio/n8n
# Pull specific version
#docker pull docker.n8n.io/n8nio/n8n:0.220.1
# Pull next (unstable) version
#docker pull docker.n8n.io/n8nio/n8n:next
# Get the container ID
docker ps -a
# Stop the container with ID container_id
docker stop [container_id]
# Remove the container with ID container_id
docker rm [container_id]
sudo docker compose up -d