impossible to delete a container

2019-09-18 01:46发布

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条回答
Juvenile、少年°
2楼-- · 2019-09-18 02:23

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}
查看更多
登录 后发表回答