码迷,mamicode.com
首页 > 其他好文 > 详细

在Docker容器中运行程序时出错,You have to remove (or rename) that container to be able to reuse that name.

时间:2021-05-24 07:04:17      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:运行程序   contain   有一个   查看   一个   docker   删除   class   name   

现象:

docker run 命令在容器内运行一个应用程序,提示

You have to remove (or rename) that container to be able to reuse that name.

原因:

启动的容器已在容器中使用,必须删除或者重命名该容器才能使用。

解决办法:

使用docker ps 时查看发现没有运行,使用 docker ps -l , 可以看到有一个nginx容器 ( -l 是显示最新创建的容器包括所有状态) 。

使用docker ps只能查看正在运行的容器,因为nginx这个容器已经给被停止了所以看不到。
删除容器重名的容器再次运行就行。

在Docker容器中运行程序时出错,You have to remove (or rename) that container to be able to reuse that name.

标签:运行程序   contain   有一个   查看   一个   docker   删除   class   name   

原文地址:https://www.cnblogs.com/John-2011/p/14760214.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!