Docker基礎教程(經常使用命令篇)

一、查看docker信息docker

# 查看docker版本
$docker version

# 顯示docker系統的信息
$docker info

 二、啓動容器bash

# 交互式
$docker run -it image_name /bin/bash

# 後臺式
$docker run -d image_name 

三、查看容器ui

# 列出當前全部正在運行的container
$docker ps

# 列出全部的container
$docker ps -a

# 列出最近一次啓動的container
$docker ps -l

四、保存修改spa

# 保存對容器的修改; -a, --author="" Author; -m, --message="" Commit message
$docker commit ID new_image_name

五、對鏡像的操做rest

# 檢索image
$docker search image_name

# 下載image
$docker pull image_name

# 列出鏡像列表; -a, --all=false Show all images; --no-trunc=false Don't truncate output; -q, --quiet=false Only show numeric IDs
$docker images

# 刪除一個或者多個鏡像; -f, --force=false Force; --no-prune=false Do not delete untagged parents
$docker rmi image_name

# 顯示一個鏡像的歷史; --no-trunc=false Don't truncate output; -q, --quiet=false Only show numeric IDs
$docker history image_name

六、對容器的操做日誌

# 刪除全部容器
$docker rm `docker ps -a -q`

# 刪除單個容器; -f, --force=false; -l, --link=false Remove the specified link and not the underlying container; -v, --volumes=false Remove the volumes associated to the container
$docker rm Name/ID

# 中止、啓動、殺死一個容器
$docker stop Name/ID
$docker start Name/ID
$docker kill Name/ID

# 從一個容器中取日誌; -f, --follow=false Follow log output; -t, --timestamps=false Show timestamps
$docker logs Name/ID

# 列出一個容器裏面被改變的文件或者目錄,list列表會顯示出三種事件,A 增長的,D 刪除的,C 被改變的
$docker diff Name/ID

# 顯示一個運行的容器裏面的進程信息
$docker top Name/ID

# 從容器裏面拷貝文件/目錄到本地一個路徑
$docker cp Name:/container_path to_path
$docker cp ID:/container_path to_path

# 重啓一個正在運行的容器; -t, --time=10 Number of seconds to try to stop for before killing the container, Default=10
$docker restart Name/ID

# 附加到一個運行的容器上面; --no-stdin=false Do not attach stdin; --sig-proxy=true Proxify all received signal to the process
$docker attach ID

七、保存和加載鏡像code

# 保存鏡像到一個tar包; -o, --output="" Write to an file
$docker save image_name -o file_path
# 加載一個tar包格式的鏡像; -i, --input="" Read from a tar archive file
$docker load -i file_path

# 機器a
$docker save image_name > /home/save.tar
# 使用scp將save.tar拷到機器b上,而後:
$docker load < /home/save.tar

八、發佈鏡像blog

# 發佈docker鏡像
$docker push new_image_name

九、進入容器進程

$docker exec -it ID /bin/bash 

十、退出容器事件

exit或Ctrl+D
相關文章
相關標籤/搜索