Docker使用之容器

2021-08-27 05:21:34 字數 787 閱讀 6150

1、從倉庫拉取映象

docker image pull library/hello-world

預設倉庫分組為library,上面的可以簡化為

docker image pull hello-world

2、新建容器並執行

docker container run hello-world

3、shell執行容器

45  2018-09-04 17:58:12 docker container run -it ubuntu bash

4、檢視所有image

docker image ls

5、檢視所有執行的container

docker container ls

6、檢視所有container,包含未執行的container

docker container ls -a

7、殺死執行的容器,kill 後接container id,kill後容器依舊存在

docker container kill b4e38c33784f

8、刪除容器檔案

docker container rm b4e38c33784f

9、啟動已經存在的容器檔案

docker container start 13f118764a4d

10 、進入執行中的容器,退出後容器仍舊執行

docker exec -it 13f118764a4d /bin/bash

11、進入執行中的容器,退出後容器同步關閉

docker attach 13f118764a4d

容器list使用之erase

程式裡面使用了list容器,其中用到了erase 函式。花了點時間,搞清楚了erase 函式的機理。常用的刪除容器中元素的方法是如下 方法1 list int list list int iterator iter for iter list.begin iter list.end else 也可以...

容器list使用之erase

今天程式裡面使用了list容器,其中用到了erase 函式,程式竟然崩潰了,之前一直沒出現問題,感覺莫名奇妙。花了點時間,搞清楚了erase 函式的機理。常用的刪除容器中元素的方法是如下 方法1 list int list list int iterator iter for iter list.b...

Docker容器 簡單使用

為什麼使用容器 使用容器的場景 容器的操作 啟動乙個nginx容器 root localhost docker run d name ngx1 nginx latest檢視當前正在執行的容器 root localhost docker ps檢視全部的容器 包括已經停止的 root localhost...