docker容器的基礎命令

2021-09-13 19:02:12 字數 1249 閱讀 8699

直接列印

docker run centos echo 'hello world'
互動式

-d :分離模式: 在後台執行

-i :即使沒有附加也保持stdin 開啟

-t :分配乙個偽終端;

進入docker互動式,如果想在後台退出,就是不用exit,使用ctrl+p 和ctrl+q, 重新進去 docker attach container01

docker run -d -i -t centos /bin/bash
a、列表

正在執行中

docker ps
全部

docker ps -a

docker ps -l

b、檢視某個

docker inspect ***(名字)
docker run --name=container01 -i -t centos /bin/bash
docker start [-i] container01
-f 強制刪除

docker rm container01
docker top container01
–since : 此引數指定了輸出日誌開始日期,即只輸出指定日期之後的日誌。

-f : 檢視實時日誌

-t : 檢視日誌產生的日期

-tail=10 : 檢視最後的10條日誌。

container01: 容器名稱

docker logs -f -t --since="2017-05-31" --tail=10 container01
docker stop/kill
將本地的埠對映docker埠 本地:docker

docker run -p 80:80 --name web -i -t centos /bin/bash
檢視docker容器埠對映情況

docker port web
-v /docker/nginx/html:/usr/share/nginx/html
–restart=always

docker容器基礎命令

docker容器基礎命令 1 建立容器 docker容器非常輕量級,使用者可以隨時建立或者刪除 docker create ti ubuntu 使用docker create命令建立的容器處於停止狀態,需使用docker start啟動。新增加了乙個name等於cccc,status為created...

Docker容器的命令

新建容器並啟用 docker run centos 執行容器,並進入互動模式 使用exit,直接停止容器,並退出到主機 使用ctrl p q 退出容器,但是不停止容器執行 列出當前執行中的容器 docker ps 列表當前執行中和之前執行過的容器 docker ps a 只列出容器編號 docker...

docker容器命令

1.docker run it name container name repository tag image id bin bash 互動方式啟動docker容器 例如docker run it name mycentos centos 7 bin bash 2.docker run d nam...