Docker常用命令

Docker常用命令

Docker命令详解:

attach     附加到一个运行的容器上面
      --no-stdin=false Do not attach stdin
      --sig-proxy=true Proxify all received signal to the process (even in non-tty mode)
        
        attach命令允许你查看或者影响一个运行的容器。你可以在同一时间attach同一个容器。你也可以从一个容器中脱离出来,是从CTRL-C。

 build     根据Dockerfile 构建出一个容器
      --no-cache=false Do not use cache when building the image
      -q, --quiet=false Suppress the verbose output generated by the containers
      --rm=true Remove intermediate containers after a successful build
      -t, --tag="" Repository name (and optionally a tag) to be applied to the resulting image in case of success


 commit     根据现有的容器的改变创建一个新的容器镜像
      -a, --author="" Author (eg. "John Hannibal Smith <hannibal@a-team.com>"
      -m, --message="" Commit message

 cp     从容器里面拷贝文件/目录到本地一个路径
    
diff    列出一个容器里面被改变的文件或者目录,list列表会显示出三种事件,A 增加的,D 删除的,C 被改变的。

events     从容器中获取实时事件
      --since="" Show all events created since timestamp
      --until="" Stream events until this timestamp

export     把容器的内容打包成tar包输出到标准输出


history     显示一个镜像的历史
      --no-trunc=false Don't truncate output
      -q, --quiet=false Only show numeric IDs

images    列出镜像列表  
      -a, --all=false Show all images (by default filter out the intermediate image layers)
      --no-trunc=false Don't truncate output
      -q, --quiet=false Only show numeric IDs

import        从一个tar包创建一个新的镜像 
      Usage: docker import URL|- [REPOSITORY[:TAG]]
       URL必须是以http开头的指向一个单独的tar包出现的文件系统。如果你想从本地目录或者tar包导入,则使用‘-’从标准输入代替数据来源

info     显示docker系统的信息

inspect     返回系统或者镜像的一些低层次的信息,默认会返回一些JSON格式的信息,如果你指定其他输出格式,也会显示其他格式的输出
                 http://golang.org/pkg/text/template/
    
kill     kill一个运行的容器,发送SIGKILL信号,或者其他你指定的信号

load     在标准输入加载一个tar包格式的镜像
        -i, --input="" Read from a tar archive file, instead of STDIN

login     登陆registry server
      -e, --email="" Email
      -p, --password="" Password
      -u, --username="" Username

logs     从一个容器中取日志
      -f, --follow=false Follow log output
      -t, --timestamps=false Show timestamps

port     查看公共的端口经过NATA映射到私有的哪个端口

ps     显示容器,默认只显示当前在运行的容器。
      -a, --all=false Show all containers. Only running containers are shown by default.
      --before="" Show only container created before Id or Name, include non-running ones.
      -l, --latest=false Show only the latest created container, include non-running ones.
      -n=-1 Show n last created containers, include non-running ones.
      --no-trunc=false Don't truncate output
      -q, --quiet=false Only display numeric IDs
      -s, --size=false Display sizes
      --since="" Show only containers created since Id or Name, include non-running ones.

pull     从docker的registry server 拉取镜像

push     推一个镜像到docker registry server

restart     重启一个正在运行的容器
        -t, --time=10 Number of seconds to try to stop for before killing the container. Once killed it will then be restarted. Default=10

rm     删除一个或者多个容器
          -f, --force=false Force removal of running container
          -l, --link=false Remove the specified link and not the underlying container
          -v, --volumes=false Remove the volumes associated to the container

rmi     删除一个或者多个镜像
          -f, --force=false Force
          --no-prune=false Do not delete untagged parents

run     在一个新的容器中运行一个命令
          -a, --attach=[] Attach to stdin, stdout or stderr.
          -c, --cpu-shares=0 CPU shares (relative weight)
          --cidfile="" Write the container ID to the file
          -d, --detach=false Detached mode: Run container in the background, print new container id
          --dns=[] Set custom dns servers
          --dns-search=[] Set custom dns search domains
          -e, --env=[] Set environment variables
          --entrypoint="" Overwrite the default entrypoint of the image
          --env-file=[] Read in a line delimited file of ENV variables
          --expose=[] Expose a port from the container without publishing it to your host
          -h, --hostname="" Container host name
          -i, --interactive=false Keep stdin open even if not attached
          --link=[] Add link to another container (name:alias)
          --lxc-conf=[] (lxc exec-driver only) Add custom lxc options --lxc-conf="lxc.cgroup.cpuset.cpus = 0,1"
          -m, --memory="" Memory limit (format: <number><optional unit>, where unit = b, k, m or g)
          --name="" Assign a name to the container
          --net="bridge" Set the Network mode for the container
                               'bridge': creates a new network stack for the container on the docker bridge
                               'none': no networking for this container
                               'container:<name|id>': reuses another container network stack
                               'host': use the host network stack inside the contaner
          -P, --publish-all=false Publish all exposed ports to the host interfaces
          -p, --publish=[] Publish a container's port to the host
                               format: ip:hostPort:containerPort | ip::containerPort | hostPort:containerPort
                               (use 'docker port' to see the actual mapping)
          --privileged=false Give extended privileges to this container
          --rm=false Automatically remove the container when it exits (incompatible with -d)
          --sig-proxy=true Proxify all received signal to the process (even in non-tty mode)
          -t, --tty=false Allocate a pseudo-tty
          -u, --user="" Username or UID
          -v, --volume=[] Bind mount a volume (e.g. from the host: -v /host:/container, from docker: -v /container)
          --volumes-from=[] Mount volumes from the specified container(s)
          -w, --workdir="" Working directory inside the container

save     保存镜像到一个tar包
          -o, --output="" Write to an file, instead of STDOUT

search     在docker index中寻找镜像
          --no-trunc=false Don't truncate output
          -s, --stars=0 Only displays with at least xxx stars
          -t, --trusted=false Only show trusted builds

start     启动一个停止的容器
          -a, --attach=false Attach container's stdout/stderr and forward all signals to the process
          -i, --interactive=false Attach container's stdin

stop     停止一个容器
        -t, --time=10 Number of seconds to wait for the container to stop before killing it.

tag     给repository 中的镜像进行标记
          -f, --force=false Force

top     显示一个运行的容器里面的进程信息

version     显示docker的版本信息

wait     阻止容器直到容器停止,然后打印退出码

转载于:https://my.oschina.net/guol/blog/270950

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/109816.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • docker搭建kafka集群[通俗易懂]

    docker搭建kafka集群[通俗易懂]docker搭建kafka集群我在M1mbp上使用的以下镜像新建文件zk-kafka-docker-compose.ymlversion:”2″services:zookeeper:user:rootimage:docker.io/zookeeperports:-“12181:2181″environment:-ALLOW_ANONYMOUS_LOGIN=yesvolumes:-zoo

  • idea打包docker镜像特别慢_把代码和环境做成docker镜像

    idea打包docker镜像特别慢_把代码和环境做成docker镜像1.安装docker插件在plugins中搜索docker安装,完成后重启。

  • docker mysql 启动失败_mysql启动1067错误

    docker mysql 启动失败_mysql启动1067错误docker启动mysql失败,报错dockerexec-itmysqlmysql-uroot-prootErrorresponsefromdaemon:Container0f83eee59a75595deedecbd40b384333e6db35edd90c5d4c3a0eb3212f2e4665isrestarting,waituntilthecontainerisrunning一直显示正在重启使用dockerlogs–tail50–follow-

  • Docker技术( 容器虚拟化技术 )「建议收藏」

    Docker虚拟化容器技术第一章Docker简介诞生背景Docker介绍虚拟机技术容器虚拟化技术官方网址第二章Docker安装前提条件安装DockerDocker底层原理Docker结构图工作原理Docker为什么比VM快第三章Docker常用命令帮助命令镜像命令容器命令第一章Docker简介诞生背景一款产品从开发到上线,从操作系统,到运行环境,再到应用配置。作为开发…

  • 送你一张图,教你如何docker卸载redis,请收好「建议收藏」

    送你一张图,教你如何docker卸载redis,请收好「建议收藏」一张图,告诉你怎么操作。嘿嘿❤如果文章对您有所帮助,就在文章的右上角或者文章的末尾点个赞吧!(づ ̄3 ̄)づ❤如果喜欢大白兔分享的文章,就给大白兔点个关注吧!(๑′ᴗ‵๑)づ╭❤~❤对文章有任何问题欢迎小伙伴们下方留言或者入群探讨【群号:708072830】❤鉴于个人经验有限,所有观点及技术研点,如有异议,请直接回复讨论(请勿发表攻击言)…

  • docker菜鸟教程linux_linux离线安装docker

    docker菜鸟教程linux_linux离线安装dockerlinux安装和使用docker教程文章目录linux安装和使用docker教程1、docker官网安装地址2、卸载linux系统中的docker3、安装docker4、查看安装docker列表5、启动docker6、设置docker开机启动7、查看docker版本8、docker的image远程仓库地址9、拉去镜像10、启动及常用命令1、docker官网安装地址https://docs.docker.com/engine/install/centos/2、卸载linux系统中的docker

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号