n8n-mcp / Dockerfile
KyrosDev's picture
Add USE_FIXED_HTTP for stable HTTP implementation
018745d
raw
history blame contribute delete
212 Bytes
FROM ghcr.io/czlonkowski/n8n-mcp:latest
# HuggingFace 要求 port 7860
ENV PORT=7860
ENV MCP_MODE=http
ENV USE_FIXED_HTTP=true
ENV LOG_LEVEL=info
ENV HOST=0.0.0.0
EXPOSE 7860
CMD ["node", "dist/mcp/index.js"]