docker 常用命令

Commands:
attach      Attach local standard input, output, and error streams to a running container    # 进入容器正在运行的终端,不会启动新的进程
build       Build an image from a Dockerfile                                                # 通过 Dockerfile 创建镜像
commit      Create a new image from a container's changes                                    # 依据当前容器提交一个新的镜像
cp          Copy files/folders between a container and the local filesystem                    # 从容器中拷贝文件或目录到本地
create      Create a new container                                                            # 创建一个新的容器
diff        Inspect changes to files or directories on a container's filesystem                # 查看 docker 容器编号
events      Get real time events from the server                                            # 从 docker 服务获取实时事件
exec        Run a command in a running container                                            # 进入容器后开启一个新的终端,可以在里面操作(常用)
export      Export a container's filesystem as a tar archive                                # 导出容器额内容作为一个 tar 归档文件【对应 import】
history     Show the history of an image                                                    # 展示一个镜像制成历史
images      List images                                                                        # 列出系统当前镜像
import      Import the contents from a tarball to create a filesystem image                    # 从 tar包中的内容创建一个新的文件系统镜像【对应 export】
info        Display system-wide information                                                    # 查看系统相关信息
inspect     Return low-level information on Docker objects                                    # 查看容器详细信息
kill        Kill one or more running containers                                                # kill 指定 docker 容器
load        Load an image from a tar archive or STDIN                                        # 从一个 tar 包中加载一个镜像【对应 save】
login       Log in to a Docker registry                                                        # 注册或登入一个 Docker 原服务器
logout      Log out from a Docker registry                                                    # 从当前 Docker registry 退出
logs        Fetch the logs of a container                                                    # 查看当前容器日志信息
pause       Pause all processes within one or more containers                                # 暂停容器
port        List port mappings or a specific mapping for the container                        # 查看映射端口对应的容器内部源端口
ps          List containers                                                                    # 列出容器列表
pull        Pull an image or a repository from a registry                                    # 从 docker 镜像源服务器拉取指定镜像或最新镜像 
push        Push an image or a repository to a registry                                        # 推送指定镜像或库镜像到docker源服务器
rename      Rename a container                                                                # 重命令容器
restart     Restart one or more containers                                                    # 重启容器
rm          Remove one or more containers                                                    # 删除容器
rmi         Remove one or more images                                                        # 删除镜像
run         Run a command in a new container                                                # 创建一个行的容器并运行一个命令
save        Save one or more images to a tar archive (streamed to STDOUT by default)        # 保存一个镜像为 tar 包【对应load】
search      Search the Docker Hub for images                                                # 在Docker Hub中搜索镜像
start       Start one or more stopped containers                                            # 启动容器
stats       Display a live stream of container(s) resource usage statistics                    # 监控容器资源使用情况
stop        Stop one or more running containers                                                # 停止容器
tag         Create a tag TARGET_IMAGE that refers to SOURCE_IMAGE                            # 给源中镜像打tag标签
top         Display the running processes of a container                                    # 查看容器中运行的进程信息
unpause     Unpause all processes within one or more containers                                # 取消暂停容器                        # 
version     Show the Docker version information                                                # 查看 docker 版本信息

 

posted on 2020-11-17 11:59  wangzy-Zj  阅读(91)  评论(0编辑  收藏  举报