Docke 1 12 基础篇 48条命令 1

docker1.12中目前有48条命令,这里面有非常简单的version或者info的确认信息用的命令,也有内置的swarm mode的需要有集群环境才能执行的命令。我们在这个系列中将会逐条确认简单的使用方法。

事前准备

OS

演示用Linux发型版使用CentOS7.2,Linux内核3.10

[root@liumiaocn ~]# uname -a
Linux liumiaocn 3.10.0-327.el7.x86_64 #1 SMP Thu Nov 19 22:10:57 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
[root@liumiaocn ~]#
  • 1
  • 2
  • 3

Docker版本

Docker版本 1.12.1
[root@liumiaocn ~]# docker version
Client:
 Version:      1.12.1
 API version:  1.24
 Go version:   go1.6.3
 Git commit:   23cf638
 Built:
 OS/Arch:      linux/amd64
 Experimental: true

Server:
 Version:      1.12.1
 API version:  1.24
 Go version:   go1.6.3
 Git commit:   23cf638
 Built:
 OS/Arch:      linux/amd64
 Experimental: true
[root@liumiaocn ~]#
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

安装方法:目前CentOS7.2标准配置的docker版本为1.10。因为使用的是centos的experiment的docker repo,在centos的版本升上去之前下面的方法应该会一直会有效。刚刚再次试验过,目前仍然有效。

CentOS7上安装Docker1.12.1 http://blog.csdn.net/liumiaocn/article/details/52130852

docker 1.12的48条命令

以下是docker –help出来的48条命令,我们会在接下来的例子中逐条确认使用方法。

项番 命令 详解
No.1 attach Attach to a running container
No.2 build Build an image from a Dockerfile
No.3 commit Create a new image from a container’s changes
No.4 cp Copy files/folders between a container and the local filesystem
No.5 create Create a new container
No.6 deploy Create and update a stack from a Distributed Application Bundle (DAB)
No.7 diff Inspect changes on a container’s filesystem
No.8 events Get real time events from the server
No.9 exec Run a command in a running container
No.10 export Export a container’s filesystem as a tar archive
No.11 history Show the history of an image
No.12 images List images
No.13 import Import the contents from a tarball to create a filesystem image
No.14 info Display system-wide information
No.15 inspect Return low-level information on a container, image or task
No.16 kill Kill one or more running containers
No.17 load Load an image from a tar archive or STDIN
No.18 login Log in to a Docker registry.
No.19 logout Log out from a Docker registry.
No.20 logs Fetch the logs of a container
No.21 network Manage Docker networks
No.22 node Manage Docker Swarm nodes
No.23 pause Pause all processes within one or more containers
No.24 plugin Manage Docker plugins
No.25 port List port mappings or a specific mapping for the container
No.26 ps List containers
No.27 pull Pull an image or a repository from a registry
No.28 push Push an image or a repository to a registry
No.29 rename Rename a container
No.30 restart Restart a container
No.31 rm Remove one or more containers
No.32 rmi Remove one or more images
No.33 run Run a command in a new container
No.34 save Save one or more images to a tar archive (streamed to STDOUT by default)
No.35 search Search the Docker Hub for images
No.36 service Manage Docker services
No.37 stack Manage Docker stacks
No.38 start Start one or more stopped containers
No.39 stats Display a live stream of container(s) resource usage statistics
No.40 stop Stop one or more running containers
No.41 swarm Manage Docker Swarm
No.42 tag Tag an image into a repository
No.43 top Display the running processes of a container
No.44 unpause Unpause all processes within one or more containers
No.45 update Update configuration of one or more containers
No.46 version Show the Docker version information
No.47 volume Manage Docker volumes
No.48 wait Block until a container stops, then print its exit code

再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://www.cnblogs.com/captainbed

原文地址:https://www.cnblogs.com/firsttry/p/10243914.html

时间: 2024-11-05 20:46:54

Docke 1 12 基础篇 48条命令 1的相关文章

Linux基础篇四———管道命令

管道命令 如果我们的数据必须经过"几道手续"之后才能够得到我们想要的格式那么我们必须使用pipe命令来解决这个问题 **管道命令和连续执行命令是不一样的 我们来看一下管道命令的处理信息流程 管道命令的应用 1.cut **用于选取部分数据 -d:规定分隔符 -f:依据-d分隔之后所选取的数据段 -c:规定以字符为单位分割接数字来取到置顶位置数据. **cut的主要用途在于将同一行数据进行分解 2.grep **用于分析一行数据 -a: 将二进制文件以text文件的方式查找数据 -c:计

linux基础篇-linux获取命令帮助 详解

获取命令的使用帮助 内部命令: help COMMAND [[email protected] etc]# type cd cd is a shell builtin [[email protected] etc]# help cd cd: cd [-L|-P] [dir] Change the shell working directory. 外部命令: COMMAND --help [[email protected] etc]# type mkdir mkdir is /bin/mkdir

linux基础篇-13,命令替换$()

[[email protected] ~]# echo it is the time $(clock) it is the time 2016年11月10日 星期四 18时20分38秒 -0.327027 seconds 命令替换 [[email protected] ~]# touch ./file-$(date +%F-%H-%M-%S).txt [[email protected] ~]# touch ./file-$(date +%F-%H-%M-%S).txt [[email prot

linux基础篇-20,seq命令的用法

seq 用法:seq [选项]... 尾数 或:seq [选项]... 首数 尾数 或:seq [选项]... 首数 增量 尾数 以指定增量从首数开始打印数字到尾数. 用于产生从某个数到另外一个数之间的所有整数 [[email protected] ~]# seq 1 5 1 2 3 4 5 [[email protected] ~]# seq  5 1 2 3 4 5 范例,循环取出$1到$#的值 取出键盘输入的值 #!/bin/bash # for I in `seq 1 $#`;do

linux基础篇-17,find命令详解

文件查找: locate:非实时查找,模糊匹配,查找根据全系统文件数据库进行,速度快 updatedb:手动生成文件数据库 find:实时,准确,支持众多查找标准,遍历指定目录中的所有文件完成查找,书店慢 find 查找路径 查找标准 查找到一行的处理动作 查找路径:默认为当前目录 查找标准:默认为指定文件下的所有文件 处理动作:默认为显示 匹配标准:-name 'filename':对文件名做精确匹配 文件名通配:"" * ? [] -iname filename:文件名匹配不区分大

2000条你应知的WPF小姿势 基础篇<8-14>

在正文开始之前需要介绍一个人:Sean Sexton. 来自明尼苏达双城的软件工程师,对C#和WPF有着极深的热情.最为出色的是他维护了两个博客:2,000Things You Should Know About C# 和 2,000 Things You Should Know About WPF .听到博客名字就懂这个人有多伟大了吧.他以类似微博式的150字简短语言来每天更新一条WPF和C#重要又容易被遗忘的知识.Follow他的博客也有一段日子了,很希望能够分享给大家. 本系列我不仅会翻译

Linux运维之路 基础篇:Linux基础命令(一)

Linux运维之路 基础篇:Linux基础命令(一) Linux哲学宗旨: 一切皆文件:把几乎所有的资源,包括硬件设备都组织为文件 有众多单一的小程序组成,一个程序制实现一个功能,组成小程序完成复杂操作 尽量避免和用户交互:实现脚本编程,以自动完成某些功能 使用纯文本文件保存配置信息 终端:用户和主机交互时用到的设备 物理终端:直接接入的设备也叫控制台/dev/console 虚拟终端:附加在物理终端上虚拟出的,默认启动六个,Ctrl+Alt(F1~F6),系统启动时,默认启动虚拟终端1,启动终

cocos2dx基础篇(12)——点九图CCScale9Sprite

[引言] 本来是想学学控件类CCControl的另一个子类按钮控件CCControlButton的.但是发现里面有一个参数牵扯到CCScale9Sprite这个类.看到CCScale9Sprite,很容易联想到精灵类CCSprite.两者又有什么区别呢?因此我就去网上收了一些有关CCScale9Sprite的资料来学习. [参考文献] [1] http://blog.csdn.net/nynyvkhhiiii/article/details/12782249 [2] http://www.cnb

2000条你应知的WPF小姿势 基础篇<1-7>

在正文开始之前需要介绍一个人:Sean Sexton. 来自明尼苏达双城的软件工程师,对C#和WPF有着极深的热情.最为出色的是他维护了两个博客:2,000Things You Should Know About C# 和 2,000 Things You Should Know About WPF .听到博客名字就懂这个人有多伟大了吧.他以类似微博式的150字简短语言来每天更新一条WPF和C#重要又容易被遗忘的知识.Follow他的博客也有一段日子了,很希望能够分享给大家. 本系列我不仅会翻译