启动容器并安装package

docker run xxx apt-get -y xxx

其中-y要加上避免无法交互

批量删除容器

docker ps -a | awk '{print $1}' |xargs docker rm -f