8-Docker网络命令之prune

1.prune介绍

Docker网络命令prune是用来删除所有无用的网络

2.prune用法

 docker network prune [参数]

[root@centos79 ~]# docker network prune --help

Usage:  docker network prune [OPTIONS]

Remove all unused networks

Options:
      --filter filter   Provide filter values (e.g. "until=<timestamp>")
  -f, --force           Do not prompt for confirmation
[root@centos79 ~]# 

3.prune样例

3.1.删除所有无用的网络

命令:

docker network prune

[root@centos79 ~]# docker network ls
NETWORK ID     NAME      DRIVER    SCOPE
6fe1398a5652   bridge    bridge    local
806f281c40a3   elk       bridge    local
6dfaabaf6333   host      host      local
e33f2e7fe685   mynet1    bridge    local
8a8734a4776a   none      null      local
[root@centos79 ~]# docker network prune
WARNING! This will remove all custom networks not used by at least one container.
Are you sure you want to continue? [y/N] y
Deleted Networks:
elk
mynet1

[root@centos79 ~]# docker network ls
NETWORK ID     NAME      DRIVER    SCOPE
6fe1398a5652   bridge    bridge    local
6dfaabaf6333   host      host      local
8a8734a4776a   none      null      local
[root@centos79 ~]# 

相关推荐

  1. 8-Docker网络命令prune

    2024-01-28 09:28:02       51 阅读
  2. docker system prune命令详解

    2024-01-28 09:28:02       32 阅读
  3. 8-Docker网络命令ls

    2024-01-28 09:28:02       52 阅读
  4. 8-Docker网络命令connect

    2024-01-28 09:28:02       53 阅读
  5. docker image prune -f 命令什么用途

    2024-01-28 09:28:02       32 阅读
  6. 8-Docker网路模式自定义网络

    2024-01-28 09:28:02       59 阅读
  7. docker 基本命令

    2024-01-28 09:28:02       32 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-01-28 09:28:02       94 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-01-28 09:28:02       100 阅读
  3. 在Django里面运行非项目文件

    2024-01-28 09:28:02       82 阅读
  4. Python语言-面向对象

    2024-01-28 09:28:02       91 阅读

热门阅读

  1. DAY31:贪心算法入门455、53、376

    2024-01-28 09:28:02       60 阅读
  2. MySQL中一条更新语句是怎么执行的?

    2024-01-28 09:28:02       59 阅读
  3. 代码随想录算法训练59 | 单调栈part02

    2024-01-28 09:28:02       56 阅读
  4. xss跨站脚本攻击

    2024-01-28 09:28:02       56 阅读
  5. 【每日一题】YACS 243:5G通讯

    2024-01-28 09:28:02       52 阅读
  6. npm install 一直卡在 sill idealTree 解决方案

    2024-01-28 09:28:02       52 阅读