Docker 常用命令

Posted Python_ZEN

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Docker 常用命令相关的知识,希望对你有一定的参考价值。

9. docker 删除镜像:  docker rmi    imageID
    删除容器:    docker rm containName


8. docker repo 上传:

我们看到这里有个容器,但是我们需要将容器制作成为镜像才可以上传。
docker commit <exiting-Container> <hub-user>/<repo-name>[:<tag>]
如果是已经存在的镜像,如何上传呢?
docker tag <existing-image> <hub-user>/<repo-name>[:<tag>]
这里的tag不指定就是latest。 

docker push xiaofeier312/ubuntu_nc_xiaofei


 

7.运行一个可交互的shell终端
 $ docker run -i -t ubuntu /bin/bash

剖析:

  • -i 表示启动一个可交互的容器
  • –t表示使用pseudo-TTY,关联到容器的stdin和stdout
  • 在终端中,如果输入exit命令将会停止当前容器;因此如果只是取消关联,可以键入ctrl-p或者ctrl-q
  • 你可以在其他终端通过docker ps –a查看已经运行的容器列表  
  •  
  • 运行一个长时间的程序

 运行一个长时间的程序

# Start a very useful long-running process$ JOB=$(docker run -d ubuntu /bin/sh -c "while true; do echo Hello world; sleep 1; done")# Collect the output of the job so far$ docker logs $JOB# Kill the job 稍微延迟点运行$ docker kill $JOB

剖析:

  • 本例启动了一个容器,而该容器会每隔1秒输出Helo World
  • –d 表示在后台运行
  • docker logs $JOB表示查看该容器的日志,就是查看标准输出stdout
  • docker kill $JOB表示停掉这个容器


6. 
docker ubuntu镜像安装nc
apt-get update
apt-get install netcat

5.
docker 命令:
docker images -a 查看镜像
docker search redis   查看docker  hub上的镜像
docker pull ubuntu    下载镜像
docker 配置:
cd /etc/docker
检测docker安装:
docker run hello-world
查看docker是否安装成功:
docker info
~~~~~~~~~~~~~~~~~~~
启动/查看:
service docker start
service docker status
service docker stop
~~~~~~~~~~~~~~~~~~~
创建自己镜像
mkdir myimage
vim Dockerfile
>>FROM centos:latest
>>CMD echo "Hello-myimage"
docker build -t myimage .
docker images
docker run myimage
~~~~~~~~~~~~~~~~~~
docker ps # 查看运行中的容器$
docker ps -a # 查看所有容器
~~~~~~~~~~~~~~~~~~~~~~
查看log
docker logs  container_name或者$JOB
~~~~~~~~~~~~~~~~~~~~~~~

docker的ubuntu镜像无ifconfig和ping命令
或者 ubuntu系统中无ifconfig 和 ping 
解决方案:
执行以下鸣冷:
apt-get update
apt-get install net-tools
apt-get install iputils-ping


 

4. docker基础
https://yq.aliyun.com/articles/133?spm=5176.100239.blogcont132.11.SrxUVe ;
https://yq.aliyun.com/articles/40494?spm=5176.100239.blogcont65145.24.KAJ4tq

3. docker 阿里云加速
https://cr.console.aliyun.com/#/imageList

以上是关于Docker 常用命令的主要内容,如果未能解决你的问题,请参考以下文章

Docker 常用命令

docker常用命令速查

Docker 常用命令

Docker 常用命令

Docker删除报错:Error response from daemon: conflict: unable to delete 08b152afcfae (must be forced)(代码片段

提效小技巧——记录那些不常用的代码片段