主頁(yè) > 知識(shí)庫(kù) > docker 移除掉運(yùn)行不正常的container操作

docker 移除掉運(yùn)行不正常的container操作

熱門標(biāo)簽:10086外包用的什么外呼系統(tǒng) 河南防封號(hào)電銷機(jī)器人是什么 打400電話怎么辦理收費(fèi) 上海申請(qǐng)高400開(kāi)頭的電話 福州企業(yè)電銷機(jī)器人排名 怎么找到?jīng)]有地圖標(biāo)注的店 400電話辦理介紹信 麗江真人語(yǔ)音電話外呼系統(tǒng) 宿城區(qū)電話機(jī)器人找哪家

本菜鳥(niǎo)在剛學(xué)習(xí)docker的時(shí)候遇到了這樣的問(wèn)題,記錄一下,

當(dāng)啟動(dòng)一個(gè)container的時(shí)候,docker ps 看到剛啟動(dòng)的容器有問(wèn)題,

然后docker logs <container id> 才知道權(quán)限不夠,未能創(chuàng)建目錄。然后想啟動(dòng),但是當(dāng)前的container一直處于restarting ,然后docker stop 試了一下,返回成功,然后docker ps 當(dāng)前container 依然存在,然后docker kill的時(shí)候提示容器未啟動(dòng),docker -help 看了一下,docker rm 移除容器。

但改命令無(wú)法移除一個(gè)restarting 狀態(tài)的容器。

需要先docker stop<container id> 然后在docker rm 掉。

當(dāng)然 啟動(dòng)不成功也是因?yàn)闆](méi)有權(quán)限,docker 容器無(wú)權(quán)限 添加 --privileged=true 參數(shù) 。

在docker-compose的時(shí)候 docker-compose up會(huì)優(yōu)先使用已有的容器,而不是重新創(chuàng)建容器。需要帶上 --force-recreate 參數(shù)重新創(chuàng)建容器 docker-compose up -d --force-recreate

本人docker 菜鳥(niǎo),記錄一下自己遇到的問(wèn)題,勿噴。

補(bǔ)充:Docker刪除大量停止的container

1. 怎么做

官方建議的批量刪除停止容器使用docker rm $(sudo docker ps -a -q)

千萬(wàn)不要用 docker rm -f $(sudo docker ps -a -q),會(huì)刪除全部容器的

2. 為什么這么做

1. docker ps -a -q

docker ps 命令的解釋:

docker ps -a -q 列出所有容器的數(shù)字ID
root@haha:~# docker ps --help
Usage: docker ps [OPTIONS]
List containers
Options:
 -a, --all       Show all containers (default shows just running)
 -f, --filter value  Filter output based on conditions provided (default [])
   --format string  Pretty-print containers using a Go template
   --help      Print usage
 -n, --last int    Show n last created containers (includes all states) (default -1)
 -l, --latest     Show the latest created container (includes all states)
   --no-trunc    Don‘t truncate output
 -q, --quiet      Only display numeric IDs
 -s, --size      Display total file sizes

具體看看,docker ps 是列出容器的命令

- a 列出所有的容器
- q 只顯示數(shù)字ID 

2. docker rm命令的解釋:

root@haha:~# docker rm --help
Usage: docker rm [OPTIONS] CONTAINER [CONTAINER...]
Remove one or more containers
Options:
 -f, --force   Force the removal of a running container (uses SIGKILL)
   --help   Print usage
 -l, --link   Remove the specified link
 -v, --volumes  Remove the volumes associated with the container

- f 強(qiáng)制刪除,可以刪除正在運(yùn)行的容器

- v 容器啟動(dòng)后,數(shù)據(jù)會(huì)以volumes的形式存在于硬盤中,即使刪除了container數(shù)據(jù)也不會(huì)刪除,加上這個(gè)參數(shù)那么容器執(zhí)行的數(shù)據(jù)也會(huì)被刪除

以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教。

標(biāo)簽:雞西 連云港 朝陽(yáng) 荊門 運(yùn)城 遵義 面試通知 隴南

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《docker 移除掉運(yùn)行不正常的container操作》,本文關(guān)鍵詞  docker,移,除掉,運(yùn)行,不正常,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《docker 移除掉運(yùn)行不正常的container操作》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于docker 移除掉運(yùn)行不正常的container操作的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章