docker-errors-networking

Installation
SKILL.md

docker-errors-networking

Quick Reference

Rule #1: ALWAYS Use User-Defined Networks

NEVER use the default bridge network. It lacks DNS resolution, proper isolation, and configuration flexibility. ALWAYS create a user-defined bridge network:

docker network create mynet
docker run --network mynet --name web nginx
docker run --network mynet --name api node
# api can reach web via hostname "web" — automatic DNS

Network Debugging Flowchart

Installs
6
GitHub Stars
7
First Seen
Mar 27, 2026
docker-errors-networking — openaec-foundation/docker-claude-skill-package