I need help finding my local network IP for my N8N hosted Instance
I am working on a MacBook Pro
I need help finding my local network IP for my N8N hosted Instance
I am working on a MacBook Pro
Hey @seansmohr hope all is well, could you expand on your question? What do you call local network ip? The actual network ip, of the n8n instance interface ip?
You could run an execute command node with something that will output your IPs:
ip addr
or
ifconfig
if you need to find that ip from outside of the instance, you can do it with docker cli
docker-compose exec n8n ifconfig
(Replace n8n with the service name from your docker-compose.yml).
If I misundertood the question please do explain.