博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
docker基本操作
阅读量:5780 次
发布时间:2019-06-18

本文共 2687 字,大约阅读时间需要 8 分钟。

hot3.png

今天利用公司的服务器,熟悉了一下基本的docker操作命令。

首先,docker images。

然后,就会显示所有的images,对于我这样的小白来说images跑起来之后就形成了新的container。这是image和container的最本质区别以及联系。

我的任务是修改已有的images,产生新的container,然后将这个新的container保存。

在执行以上这些步骤之前,我去了docker官方网站看了很久文档,有了初步的认识,感觉这个东西很高大上,特性很多,但是初步接触,我用到的特性很少,也很基本。花了今天一天的时间,依然没有看到什么效果。

接下来,我会梳理一下我自己的思路。

docker run --help

这样可以看到很多提示,比如 -t -i  -p之类的。每一个都有不同的含义。例如-t是指:字符型的终端输入设备。-i

Usage: docker run [OPTIONS] IMAGE [COMMAND] [ARG...]

Run a command in a new container

  -a, --attach=[]            Attach to STDIN, STDOUT or STDERR

  --add-host=[]              Add a custom host-to-IP mapping (host:ip)

  -c, --cpu-shares=0         CPU shares (relative weight)

  --cap-add=[]               Add Linux capabilities

  --cap-drop=[]              Drop Linux capabilities

  --cgroup-parent=           Optional parent cgroup for the container

  --cidfile=                 Write the container ID to the file

  --cpuset-cpus=             CPUs in which to allow execution (0-3, 0,1)

  -d, --detach=false         Run container in background and print container ID

  --device=[]                Add a host device to the container

  --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 file of environment variables

  --expose=[]                Expose a port or a range of ports

  -h, --hostname=            Container host name

  --help=false               Print usage

  -i, --interactive=false    Keep STDIN open even if not attached

  --ipc=                     IPC namespace to use

  -l, --label=[]             Set meta data on a container

  --label-file=[]            Read in a line delimited file of labels

  --link=[]                  Add link to another container

  --log-driver=              Logging driver for container

  --lxc-conf=[]              Add custom lxc options

  -m, --memory=              Memory limit

  --mac-address=             Container MAC address (e.g. 92:d0:c6:0a:29:33)

  --memory-swap=             Total memory (memory + swap), '-1' to disable swap

  --name=                    Assign a name to the container

  --net=bridge               Set the Network mode for the container

  -P, --publish-all=false    Publish all exposed ports to random ports

  -p, --publish=[]           Publish a container's port(s) to the host

  --pid=                     PID namespace to use

  --privileged=false         Give extended privileges to this container

  --read-only=false          Mount the container's root filesystem as read only

  --restart=no               Restart policy to apply when a container exits

  --rm=false                 Automatically remove the container when it exits

  --security-opt=[]          Security Options

  --sig-proxy=true           Proxy received signals to the process

  -t, --tty=false            Allocate a pseudo-TTY

  -u, --user=                Username or UID (format: <name|uid>[:<group|gid>])

  --ulimit=[]                Ulimit options

  -v, --volume=[]            Bind mount a volume

  --volumes-from=[]          Mount volumes from the specified container(s)

  -w, --workdir=             Working directory inside the container

转载于:https://my.oschina.net/donngchao/blog/466835

你可能感兴趣的文章
C#反射实例应用--------获取程序集信息和通过类名创建类实例
查看>>
VC中实现文字竖排的简单方法
查看>>
会话标识未更新
查看>>
阿里架构师:程序员必须掌握的几项核心技术能力
查看>>
程序员常用的六大技术博客类
查看>>
vue中动画的实现的几种方式
查看>>
Iceworks 2.8.0 发布,自定义你的 React 模板
查看>>
胖哥学SpringMVC:请求方式转换过滤器配置
查看>>
Kotlin 更加优雅的 Builder - 理解 with
查看>>
前端日拱一卒D6——字符编码与浏览器解析
查看>>
python学习笔记- 多线程
查看>>
换一种思维看待PHP VS Node.js
查看>>
举重若轻的人人车移动端数据平台
查看>>
Oracle回应用户锁定,自治数据库是更好选择
查看>>
深入理解浏览器的缓存机制
查看>>
使用 Swift 3.0 操控日期
查看>>
微软向Linux社区开放60000多项专利:对开源微软是认真的
查看>>
版本控制、Git及其在企业中的应用
查看>>
Ruby开发者已可通过Fog管理Microsoft Azure服务
查看>>
《Doing It - Management 3.0 Experiences》作者访谈
查看>>