shell脚本清除相关容器 条件1: 清除容器名中包含ngnix的容器条件2: 在条件1的基础上,清除容器中状态为Exited的容器 docker ps -a --format 'table {{.ID}}\t{{.Image}}\t{{.Names}}\t{{.Status}}' | awk '/nginx/ && /Exited/' | awk '{print $1}' | xargs docker rm