impossible to delete a container

风格不统一 提交于 2019-12-12 00:32:22

问题


I have created a BlueMix container, and I wanted to delete it. I thus went to the portal, and clicked on the right of the container, the menu, and then chose "delete container". The problem is : after that, the container is not deleted, it is still not marked as "active", but it is impossible to free its IP address, or the RAM used!

It is quite disturbing, and at present I don't know what to do.


回答1:


Using the ice command line tool (https://www.ng.bluemix.net/docs/containers/container_cli_ice_ov.html), you can use commands to release IP addresses and force removal of containers.

Unbind a bound IP address:

ice ip unbind {IP_address} {container_name_or_id}

Completely release an IP address:

ice ip release {IP_address}

Force removal of a container:

ice rm --force {container_name_or_id}


来源:https://stackoverflow.com/questions/31559315/impossible-to-delete-a-container

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!