Spaces:
Sleeping
Sleeping
| ARG N8N_VERSION=stable | |
| FROM n8nio/n8n:$N8N_VERSION | |
| LABEL maintainer="Xiaoliang <xiaoliang.zero@gmail.com>" | |
| # Force Node.js to use public DNS infrastructure at runtime | |
| ENV NODE_OPTIONS="--dns-result-order=ipv4first" \ | |
| N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true \ | |
| N8N_RUNNERS_ENABLED=true \ | |
| N8N_PROXY_HOPS=1 | |
| USER node | |
| VOLUME ["$HOME/.n8n"] | |
| # n8n default port | |
| EXPOSE 5678 | |
| ENTRYPOINT ["tini", "--", "/docker-entrypoint.sh"] | |