Last active
October 22, 2025 03:41
-
-
Save alexishida/a5965506ff087da50e7f59e698474a37 to your computer and use it in GitHub Desktop.
Run n8n locally with Docker.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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