Running in docker:
docker run -it --rm -p 5678:5678 \
-e N8N_USER_MANAGEMENT_DISABLED=true \
-e N8N_TEMPLATES_ENABLED=false \
-e N8N_PERSONALIZATION_ENABLED=false \
-e N8N_VERSION_NOTIFICATIONS_ENABLED=false \
-e N8N_DIAGNOSTICS_ENABLED=false \
-e N8N_DIAGNOSTICS_CONFIG_FRONTEND= \
-e N8N_DIAGNOSTICS_CONFIG_BACKEND= \
-e EXTERNAL_FRONTEND_HOOKS_URLS= \
-e N8N_LOG_LEVEL=debug \
-e N8N_LICENSE_AUTO_RENEW_ENABLED=false \
-e N8N_HIDE_USAGE_PAGE=true \
MIRROR/n8n-io/n8n:stable
The only output getting:
2025-06-13T15:48:04.366Z | info | No encryption key found - Auto-generating and saving to: /home/node/.n8n/config {"file":"instance-settings.js","function":"loadOrCreate"}
2025-06-13T15:48:04.475Z | warn | Permissions 0644 for n8n settings file /home/node/.n8n/config are too wide. This is ignored for now, but in the future n8n will attempt to change the permissions automatically. To automatically enforce correct permissions now set N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true (recommended), or turn this check off set N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=false. {"file":"instance-settings.js","function":"ensureSettingsFilePermissions"}
2025-06-13T15:48:06.361Z | info | Initializing n8n process {"file":"start.js","function":"init"}
2025-06-13T15:48:06.504Z | debug | Lazy-loading nodes and credentials from n8n-nodes-base {"nodes":481,"credentials":384,"file":"lazy-package-directory-loader.js","function":"loadAll"}
2025-06-13T15:48:06.525Z | debug | Lazy-loading nodes and credentials from @n8n/n8n-nodes-langchain {"nodes":92,"credentials":21,"file":"lazy-package-directory-loader.js","function":"loadAll"}
Host does not have outbound internet access.
Image is fine:
$ docker pull MIRROR/n8n-io/n8n:stable
stable: Pulling from n8n-io/n8n
Digest: sha256:1f42981993b424a9b9bebd620ab220b531612b319b6f7a75a76929e61ab456b1
Status: Image is up to date for MIRROR/n8n-io/n8n:stable
MIRROR/n8n-io/n8n:stable
Everything works if running on the host with direct internet access, so looks like the app tries to get somewhere on the web with not timeout set.
How to run n8n in this case?