您现在的位置是: 首页 > 运维 Docker 批量操作命令
Docker 批量操作命令
2020-05-23 【运维】 1735人已围观 3072次浏览
简介Docker 批量操作命令
启动所有容器
docker start $(docker ps -a | awk '{ print $1}' | tail -n +2)
重启所有容器
docker restart $(docker ps -a | awk '{ print $1}' | tail -n +2)
关闭所有容器
docker stop $(docker ps -a | awk '{ print $1}' | tail -n +2)
删除所有容器
docker rm $(docker ps -a | awk '{ print $1}' | tail -n +2)
删除所有镜像
docker rmi $(docker p_w_picpaths | awk '{print $3}' |tail -n +2)
很赞哦! (0)
下一篇:获取阿里云CDN真实IP
点击排行
- Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: ERR DISABLE You can't write or read against a disable instance
- Debian apt 使用国内镜像
- RocketMQ 出现 sendDefaultImpl call timeout 问题
- 类 BASE64Decoder 程序包 sun.misc 找不到符号
- SpringBoot @NotBlank 不生效问题
- 记一次 Mybatis-Plus 自动填充无效问题解决
- SpringBoot 2.x 文件上传出现 The field file exceeds its maximum permitted size of 1048576 bytes
- nuxt 项目完整部署方案
站长推荐
猜你喜欢
- 在使用Flutter进行网络请求时,使用Dio访问https地址出现unable to get local issuer certificate错误
- 记一次Java MessageFormat.format踩坑
- 删除Git仓库所有历史提交记录,成为一个干净的仓库
- linux下各文件夹的结构说明及用途介绍
- SpringBoot @NotBlank 不生效问题
- idea去掉Smart commands execution提示
- CentOS 安装JDK
- SqlServer 查询包含指定字段的存储过程
- CentOS 安装 Docker
- 在更新python时出现dyld: Library not loaded: /usr/local/opt/libpsl/lib/libpsl.5.dylib,Reason: image not found错误解决方案