关于Docker 常用命令
Docker常用命令 分类列一下常用的CLI命令 仓库相关 search/ pull / push / login etc. 例:docker pull ubuntu从仓库下载ubuntuimage Images操作相关 images/ rmi / build / export / import / save /load etc. 例:docker images -t以树形结构列出当前本地Image 运行相关 run / start / stop / restart / attach /kill etc. docker run -i -t ubuntu /bin/bash启动ubuntu image,并交互式的运行shell 杂项 Docker diff / commit Dockerinfo / ps / inspect / port / logs / top / history etc. 具体docker命令的使用参见http://docs.docker.io/en/latest/reference/commandline/ 常见问题 使用Non root用户 目前版本...


