官方手冊-命令相關nginx
docker version
docker info
docker --help
docker images
各個選項說明:web
REPOSITORY:表示鏡像的倉庫源docker
TAG:鏡像的標籤shell
IMAGE ID:鏡像IDubuntu
CREATED:鏡像建立時間centos
SIZE:鏡像大小bash
同一倉庫源能夠有多個 TAG,表明這個倉庫源的不一樣個版本,咱們使用 REPOSITORY:TAG
來定義不一樣的鏡像。服務器
若是你不指定一個鏡像的版本標籤,例如你只使用 ubuntu,docker 將默認使用 ubuntu:latest 鏡像ide
從Docker Hub上搜索鏡像,從阿里雲拉取鏡像ui
docker search [OPTIONS] 鏡像名字
OPTIONS說明:
下載鏡像
docker pull 鏡像名字[:TAG]
下載時不指定TAG,默認爲 latest
刪除單個
docker rmi -f 鏡像ID
刪除多個
docker rmi -f 鏡像名1:TAG 鏡像名2:TAG
刪除所有
docker rmi -f $(docker images -qa)
有鏡像才能建立容器,這是根本前提
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說明(經常使用):
兩種退出方式:
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 1000 容器ID
docker top 容器ID
docker inspect 容器ID
exec進入
docker exec -it 容器ID bashShell
attach從新進入
docker attach 容器ID
上述兩個區別:
docker cp 容器ID:容器內路徑 目的主機路徑
命令 | 英文釋義 | 中文釋義 |
---|---|---|
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 | 截取容器中止時的退出狀態值 |