Docker Cheat sheet Series : Docker Network
1 min readJun 20, 2018
Part 5
docker network ls
List all the docker network available. (Scope local, means it cannot communicate with outside world)
docker network inspect <network_name>
Inspect a network with name network_name
docker network rm <network_name>
Remove a network with name network_name
docker network create — driver <network_type> <network_name>
Create a new network of type network_type with name network_name