Files
docker-cli/docs/reference/commandline/network_prune.md
Akihiro Suda 8f0be436cd add docker network prune
`docker network prune` prunes unused networks, including overlay ones.
`docker system prune` also prunes unused networks.

Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp>
2017-06-02 00:10:28 +00:00

1.1 KiB

title, description, keywords
title description keywords
network prune Remove unused networks
network
prune
delete

network prune

Usage:	docker network prune [OPTIONS]

Remove all unused networks

Options:
  -f, --force   Do not prompt for confirmation
      --help    Print usage

Remove all unused networks. Unused networks are those which are not referenced by any containers.

Example output:

$ docker network prune
WARNING! This will remove all networks not used by at least one container.
Are you sure you want to continue? [y/N] y
Deleted Networks:
n1
n2