Docker常用命令

Docker常用命令

Docker帮助命令

  • docker version:查看docker版本
  • docker info:显示docker系统信息
  • docker --help:查看帮助

命令格式:docker [OPTIONS] COMMAND,中括号中为可选项

常用命令

Commands:
  attach      Attach local standard input, output, and error streams to a running container
  build       Build an image from a 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
  events      Get real time events from the server
  exec        Run a command in a running container
  export      Export a container's filesystem as a tar archive
  history     Show the history of an image
  images      List images
  import      Import the contents from a tarball to create a filesystem image
  info        Display system-wide information
  inspect     Return low-level information on Docker objects
  kill        Kill one or more running containers
  load        Load an image from a tar archive or STDIN
  login       Log in to a Docker registry
  logout      Log out from a 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
  push        Push an image or a repository to a registry
  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)
  search      Search the Docker Hub for images
  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
  top         Display the running processes of a container
  unpause     Unpause all processes within one or more containers
  update      Update configuration of one or more containers
  version     Show the Docker version information
  wait        Block until one or more containers stop, then print their exit codes

Docker镜像命令

  • docker images:列出本地宿主机上的镜像

    REPOSITORY          TAG                 IMAGE ID            CREATED                SIZE
    hello-world         latest              bf756fb1ae65        5 months ago           13.3kB
    

    REPOSITORY :镜像仓库源

    TAG:镜像标签(不指定镜像版本标签,默认为latest)

    IMAGE ID:镜像ID

    CREATED:镜像创建时间

    SIZE:镜像大小

    OPTIONS:

    • q:只显示镜像ID
    • a:列出本地所有镜像
    • digiest:显示镜像摘要信息(类似于备注)
    • no-trunc:显示镜像完整信息
  • docker search xxx:根据名字从Docker Hub上查询镜像

    docker search tomcat
    NAME                          DESCRIPTION                                     STARS               OFFICIAL            AUTOMATED
    tomcat                        Apache Tomcat is an open source implementati…   2758                [OK]                
    tomee                         Apache TomEE is an all-Apache Java EE certif…   79                  [OK]                
    dordoka/tomcat                Ubuntu 14.04, Oracle JDK 8 and Tomcat 8 base…   54                                      [OK]
    bitnami/tomcat                Bitnami Tomcat Docker Image                     35
    ...
    

    OPIONS:

    • no-trunc:显示完整镜像描述
    • s:列出收藏数不少于指定值的镜像
    • automated:只列出automated buid类型的镜像
  • docker pull xxx:下载镜像
    如:下载tomcat镜像docker pull tomcat,若不指定版本号,则默认为latest版本

  • docker rmi xxx:删除单个或多个镜像

    • 删除单个:docker rmi -f 镜像ID
    • 删除多个:docker rmi -f [镜像名1] [镜像名2] ...
    • 删除所有:docker rmi -f $(docker images -qa)

Docker容器命令

  • docker run [OPTIONS] IMAGE [COMMAND] [ARG...]:新建并启动容器

    OPTIONS:

    • --name="containerName":为容器指定一个名称
    • -d:后台运行容器,并返回容器ID,即启动守护式容器
    • -i:以交互模式运行容器,通常与-t同时使用
    • -t:为容器重新分配一个伪输入终端
    • -P:随机端口映射
    • -p:指定端口映射,有以下四种格式
      • ip:hostPort:containerPort
      • ip:containerPort
      • hostPort:containerPort
      • containerPort

    如:启动一个centos镜像

    1.下载centos镜像:docker pull centos
    2.下载完成

    docker images
    REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
    centos              latest              831691599b88        2 weeks ago         215MB
    redis               latest              235592615444        3 weeks ago         104MB
    tomcat              latest              2eb5a120304e        3 weeks ago         647MB
    hello-world         latest              bf756fb1ae65        6 months ago        13.3kB
    

    3.以交互模式启动centos镜像:docker run -it 831691599b88

    启动成功

    docker run -it 831691599b88
    [root@3910ffed2621 /]
    

    此时相当于以ID为831691599b88的centos镜像为模板生成的一个容器,3910ffed2621即为当前容器ID

  • docker ps:查看docker中正在运行的镜像

    docker ps
    CONTAINER ID        IMAGE               COMMAND                  CREATED             STATUS              PORTS                    NAMES
    3910ffed2621        centos              "/bin/bash"              11 seconds ago      Up 11 seconds                                nice_banzai
    

    可以看到若没有指定容器名称,则会为容器默认分配一个名称

    OPTIONS:

    • -a:列出当前所有正在运行容器+历史运行过的
    • -l:显示最近创建的容器
    • -n:显示最近n个创建的容器
    • -q:静默模式,只显示容器编号
    • --no-trunc:不截断输出
  • 退出容器

    • exit:退出并关闭容器
    • Ctrl+P+Q:退出并保持容器
  • docker start + 容器名或ID:启动容器

  • docker stop:停止容器

  • docker kill:强制停止容器

  • docker rm:删除已停止的容器(docker rmi为删除镜像)
    一次删除多个容器

    • docker rm -f $(docker ps -a -q)
    • docker ps -a -q | xargs docker rm
  • docker run -d:启动守护式容器
    如输入 docker run -d会输出一下结果

    docker run -d centos
    74756444790f595a3cad2fcd0372296d3f23a9e3b7ce7c6590099a51bd60ced8
    

    说明容器启动成功,但输入docker ps不能看到正在运行的容器,利用docker ps -a查看,可以看到容器已经被创建并退出。因为Docker容器后台运行,就必须要有一个前台进程。
    容器运行的命令如果不是那些一直挂起的命令(如运行top、tail),就会自动退出。

    这是docker的机制问题,以nginx为例,正常情况下,我们配置启动服务器只需要启动相应的service即可。例如service nginx start。

  • 查看容器日志:docker logs -f -t --tail containerID

    • -t:加入时间戳
    • -f:跟随最新的日志打印
    • --tail:显示最后多少条
  • 查看容器内运行的进程: docker top containerID

 docker top 8da7c54a4da9
UID                 PID                 PPID                C                   STIME               TTY                 TIME                CMD
root                24821               24797               0                   16:47               ?                   00:00:00            /bin/sh -c while true;do echo hello centos;sleep 2;done
root                25110               24821               0                   16:50               ?                   00:00:00            /usr/bin/coreutils --coreutils-prog-shebang=sleep /usr/bin/sleep 2
  • 查看容器内部细节:docker inspect containerID

    以一个json字符串的形式描述正在运行的容器。

  • 进入正在运行的容器,并以命令行形式交互:

    • docker exec -it containerID bashShell:在容器中打开新的终端,并可以启动新的进程。
    • docker attach containerID:直接进入容器命令的终端,不启动新进程。
docker attach 7f580824ab84
[root@7f580824ab84 /]# ls -l /tmp
total 8
-rwx------ 1 root root 1379 Jun 11 02:35 ks-script-585nin8f
-rwx------ 1 root root  671 Jun 11 02:35 ks-script-z6zw_bhq

docker exec -t 7f580824ab84 ls -l /tmp
total 8
-rwx------ 1 root root 1379 Jun 11 02:35 ks-script-585nin8f
-rwx------ 1 root root  671 Jun 11 02:35 ks-script-z6zw_bhq

attach是先进入容器再执行命令行指令,而exec可以直接在容器外部输入指令,只返回指令的运行结果,不用启
动新的终端。

(docker exec -it containerID /bin/bash 可以达到与docker attach相同的效果。)

  • 从容器内拷贝文件到主机上:docker cp containerID: virtualPath localPath
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,423评论 6 491
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,147评论 2 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,019评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,443评论 1 283
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,535评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,798评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,941评论 3 407
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,704评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,152评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,494评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,629评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,295评论 4 329
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,901评论 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,742评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,978评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,333评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,499评论 2 348