mirror of
https://github.com/fosrl/pangolin.git
synced 2026-05-07 05:09:18 -05:00
[GH-ISSUE #2557] Cannot reach private resource in Docker network #2188
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @kreativekrise on GitHub (Feb 27, 2026).
Original GitHub issue: https://github.com/fosrl/pangolin/issues/2557
Describe the Bug
I set up a private resource to access a Nginx Docker container via a Newt tunnel. Both containers are running in the same external Docker network, and Newt can reach Nginx on the console. However, I'm unable to access the Nginx container using the container name or its IP when in "Host" mode. DNS resolution works (
dig nginx.internalresolves to an IP), but I can't actually reach the container. Bothcurl http://<IP_OR_ALIAS>:80andping <IP>result in timeouts.When I switch the private resource mode to CIDR and provide the Docker network range, I can access the container using its IP, indicating that connectivity exists, but the "Host" mode is not functioning as expected.
Environment
To Reproduce
curlorping.Expected Behavior
I expect to be able to access the Nginx container using either its container name or IP address when the private resource is set to "Host" mode, similar to the behavior when using CIDR mode.
@kreativekrise commented on GitHub (Mar 1, 2026):
It just started working. Nothing was changed.