Skip to content

Instantly share code, notes, and snippets.

@alexishida
Last active October 22, 2025 03:41
Show Gist options
  • Select an option

  • Save alexishida/a5965506ff087da50e7f59e698474a37 to your computer and use it in GitHub Desktop.

Select an option

Save alexishida/a5965506ff087da50e7f59e698474a37 to your computer and use it in GitHub Desktop.
Run n8n locally with Docker.
docker volume create n8n_data
docker run -it --rm \
--name n8n \
-p 5678:5678 \
-e GENERIC_TIMEZONE="America/Porto_Velho" \
-e TZ="America/Porto_Velho" \
-e N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true \
-e N8N_RUNNERS_ENABLED=true \
-v n8n_data:/home/node/.n8n \
docker.n8n.io/n8nio/n8n
http://localhost:5678
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment