Docker(三):命令

一. Docker常用命令
在這裏插入圖片描述
二. 幫助命令

docker version
docker info
docker --help

三. 鏡像命令

  • docker images 列出本地主機上的鏡像
    在這裏插入圖片描述
    各個選項說明:REPOSITORY:表示鏡像的倉庫源TAG:鏡像的標籤IMAGE ID:鏡像IDCREATED:鏡像創建時間SIZE:鏡像大小
    同一倉庫源可以有多個 TAG,代表這個倉庫源的不同個版本,我們使用 REPOSITORY:TAG 來定義不同的鏡像。
    如果你不指定一個鏡像的版本標籤,例如你只使用 ubuntu,docker 將默認使用 ubuntu:latest 鏡像

    OPTIONS說明:
    -a :列出本地所有的鏡像(含中間映像層)
    -q :只顯示鏡像ID
    –digests :顯示鏡像的摘要信息
    –no-trunc :顯示完整的鏡像信息

  • docker search [OPTIONS] 鏡像名字
    https://hub.docker.com
    OPTIONS說明:
    –no-trunc : 顯示完整的鏡像描述
    -s : 列出收藏數不小於指定值的鏡像
    –automated : 只列出 automated build類型的鏡像

  • docker pull 鏡像名字[:TAG] 下載鏡像
    如果省略 tag,則默認下載 latest

  • 刪除鏡像

 單個:docker rmi  -f 鏡像ID
 多個:docker rmi -f 鏡像名1:TAG 鏡像名2:TAG 
 全部: docker rmi -f $(docker images -qa)

四. 容器命令

  • 有鏡像才能創建容器,這是根本前提(下載一個CentOS鏡像演示)
 docker pull centos
  • 新建並啓動容器
 docker run [OPTIONS] IMAGE [COMMAND] [ARG...]

OPTIONS說明(常用):有些是一個減號,有些是兩個減號
	--name="容器新名字": 爲容器指定一個名稱;
	-d: 後臺運行容器,並返回容器ID,也即啓動守護式容器;
	-i:以交互模式運行容器,通常與 -t 同時使用;
	-t:爲容器重新分配一個僞輸入終端,通常與 -i 同時使用;
	-P: 隨機端口映射;
	-p: 指定端口映射,有以下四種格式
	      ip:hostPort:containerPort
	      ip::containerPort
	      hostPort:containerPort
	      containerPort

# 使用鏡像centos:latest以交互模式啓動一個容器,在容器內執行/bin/bash命令。
docker run -it centos /bin/bash 
  • 列出當前所有正在運行的容器
docker ps [OPTIONS]

OPTIONS說明(常用): 
-a :列出當前所有正在運行的容器+歷史上運行過的
-l :顯示最近創建的容器。
-n:顯示最近n個創建的容器。
-q :靜默模式,只顯示容器編號。
--no-trunc :不截斷輸出。
  • 退出容器
 # 兩種退出方式
 exit 	容器停止退出
 ctrl+P+Q 容器不停止退出
  • 啓動容器
docker start 容器ID或者容器名
  • 重啓容器
docker restart 容器ID或者容器名
  • 停止容器
docker stop 容器ID或者容器名
  • 強制停止容器
docker kill 容器ID或者容器名
  • 刪除已停止的容器
docker rm 容器ID

# 一次性刪除多個容器
docker rm -f $(docker ps -a -q)
docker ps -a -q | xargs docker rm
  • 啓動守護式容器
docker run -d 容器名

使用鏡像centos:latest以後臺模式啓動一個容器
docker run -d centos
問題:然後docker ps -a 進行查看, 會發現容器已經退出.
很重要的要說明的一點: Docker容器後臺運行,就必須有一個前臺進程.容器運行的命令如果不是那些一直掛起的命令(比如運行top,tail),就是會自動退出的.

這個是docker的機制問題,比如你的web容器,我們以nginx爲例,正常情況下,我們配置啓動服務只需要啓動響應的service即可。例如 service nginx start
但是,這樣做,nginx爲後臺進程模式運行,就導致docker前臺沒有運行的應用,這樣的容器後臺啓動後,會立即自殺因爲他覺得他沒事可做了.
所以,最佳的解決方案是,將你要運行的程序以前臺進程的形式運行.

  • 查看容器日誌
docker logs -f -t --tail 容器ID

docker run -d centos /bin/sh -c "while true;do echo hello zzyy;sleep 2;done"
   
 *   -t 是加入時間戳
 *   -f 跟隨最新的日誌打印
 *   --tail 數字 顯示最後多少條
  • 查看容器內運行的進程
docker top 容器ID
  • 查看容器內部細節
docker inspect 容器ID
  • 進入正在運行的容器並以命令行交互
docker exec -it 容器ID bashShell
重新進入docker attach 容器ID

# 上述兩個區別
attach 直接進入容器啓動命令的終端,不會啓動新的進程
exec 是在容器中打開新的終端,並且可以啓動新的進程
  • 從容器內拷貝文件到主機上
docker cp  容器ID:容器內路徑 目的主機路徑
docker ps
docker cp b5b23fbb52ad:/tmp/yum.log /root

五. 小結
在這裏插入圖片描述

attach    Attach to a running container                 # 當前 shell 下 attach 連接指定運行鏡像
build     Build an image from a Dockerfile              # 通過 Dockerfile 定製鏡像
commit    Create a new image from a container changes   # 提交當前容器爲新的鏡像
cp        Copy files/folders from the containers filesystem to the host path   #從容器中拷貝指定文件或者目錄到宿主機中
create    Create a new container                        # 創建一個新的容器,同 run,但不啓動容器
diff      Inspect changes on a container's filesystem   # 查看 docker 容器變化
events    Get real time events from the server          # 從 docker 服務獲取容器實時事件
exec      Run a command in an existing container        # 在已存在的容器上運行命令
export    Stream the contents of a container as a tar archive   # 導出容器的內容流作爲一個 tar 歸檔文件[對應 import ]
history   Show the history of an image                  # 展示一個鏡像形成歷史
images    List images                                   # 列出系統當前鏡像
import    Create a new filesystem image from the contents of a tarball # 從tar包中的內容創建一個新的文件系統映像[對應export]
info      Display system-wide information               # 顯示系統相關信息
inspect   Return low-level information on a container   # 查看容器詳細信息
kill      Kill a running container                      # kill 指定 docker 容器
load      Load an image from a tar archive              # 從一個 tar 包中加載一個鏡像[對應 save]
login     Register or Login to the docker registry server    # 註冊或者登陸一個 docker 源服務器
logout    Log out from a Docker registry server          # 從當前 Docker registry 退出
logs      Fetch the logs of a container                 # 輸出當前容器日誌信息
port      Lookup the public-facing port which is NAT-ed to PRIVATE_PORT    # 查看映射端口對應的容器內部源端口
pause     Pause all processes within a container        # 暫停容器
ps        List containers                               # 列出容器列表
pull      Pull an image or a repository from the docker registry server   # 從docker鏡像源服務器拉取指定鏡像或者庫鏡像
push      Push an image or a repository to the docker registry server    # 推送指定鏡像或者庫鏡像至docker源服務器
restart   Restart a running container                   # 重啓運行的容器
rm        Remove one or more containers                 # 移除一個或者多個容器
rmi       Remove one or more images             # 移除一個或多個鏡像[無容器使用該鏡像纔可刪除,否則需刪除相關容器纔可繼續或 -f 強制刪除]
run       Run a command in a new container              # 創建一個新的容器並運行一個命令
save      Save an image to a tar archive                # 保存一個鏡像爲一個 tar 包[對應 load]
search    Search for an image on the Docker Hub         # 在 docker hub 中搜索鏡像
start     Start a stopped containers                    # 啓動容器
stop      Stop a running containers                     # 停止容器
tag       Tag an image into a repository                # 給源中鏡像打標籤
top       Lookup the running processes of a container   # 查看容器中運行的進程信息
unpause   Unpause a paused container                    # 取消暫停容器
version   Show the docker version information           # 查看 docker 版本號
wait      Block until a container stops, then print its exit code   # 截取容器停止時的退出狀態值
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章