System Grab Bag

View all TLDR pages from common (or from all pages)

docker network

Create and manage docker networks. More information: https://docs.docker.com/engine/reference/commandline/network/.
  • List all available and configured networks on docker daemon:
    docker network ls
  • Create a user-defined network:
    docker network create --driver {{driver_name}} {{network_name}}
  • Display detailed information of a space-separated list of networks:
    docker network inspect {{network_name}}
  • Connect a container to a network using a name or ID:
    docker network connect {{network_name}} {{container_name|ID}}
  • Disconnect a container from a network:
    docker network disconnect {{network_name}} {{container_name|ID}}
  • Remove all unused (not referenced by any container) networks:
    docker network prune
  • Remove a space-separated list of unused networks:
    docker network rm {{network_name}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.