ft: add functions-loopback flag for Docker #7106
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes: https://netlify.zendesk.com/agent/tickets/350390 and in-turn: https://netlify.slack.com/archives/C07686YAY13/p1741885987341759
When running
netlify dev
ornetlify functions:serve
inside Docker and visiting the Function's URL, the CLI fails with an error like:where the port number could be different everytime. Upon investigation, it was discovered that this is becauce:
127.0.0.1
::1
So essentially, we were trying to connect on IPv4 when the only available connection was on IPv6. This PR now adds
--functions-loopback
flag to:netlify dev
netlify functions:invoke
netlify functions:serve
netlify serve
This flag is optional and can accept either:
127.0.0.1
(default)::1
So in Docker, users can now use
netlify dev --functions-loopback="::1"
to get past the issue.I'm not sure about the tests for this. If someone else can think of any relevant tests to add, feel free to add those.
I tried to update the docs, however when running
npm run docs
, I first got an error:markdown-magic
is missing. I installed the package as a dev dependency, but then it wasn't working as it seems we still need v2 of the package. v3 has some breaking changes and the current code is not meant for it. So i switch to v2, however it still fails with:That's outside my skill level and the scope of this PR to debug and fix, so I haven't updated the docs.
Note: The name/values of the flag is open for discussion.