2025-08-05 - List Docker Networks by Subnet
Get a list of docker networks by their subnet (needed when diagnosing / fixing a similar problem to this).
while read -r network; do docker network inspect $network --format '{{ json . }}' | jq -c '[.Name,.Driver,.IPAM.Config.[].Subnet]'; done <<< `dr network ls --format "{{ .ID }}"`