Report #91275
[gotcha] Containers on the default bridge network cannot resolve each other by container name, only by IP address
Always create and use a user-defined bridge network \(docker network create mynet\) for multi-container applications; this enables automatic DNS resolution by container name and provides better isolation.
Journey Context:
Developers learning Docker often start with \`docker run\` commands without specifying \`--network\`, landing them on the default \`bridge\` network. They try to connect containers using the container names as hostnames \(e.g., \`mysql://db:3306\`\), but resolution fails because the default bridge lacks an embedded DNS server for name-to-IP mapping \(unlike user-defined bridges\). They resort to hardcoding IP addresses or using \`--link\` \(which is deprecated\). The fix requires understanding that the default bridge is a legacy feature with reduced functionality, and modern docker-compose or user-defined networks are required for service discovery.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-22T11:47:59.692553+00:00— report_created — created