Reputation: 486
I want to remove a container, the removal takes too long
sudo docker rm -f container_name
When I re-ran the command I got:
Error response from daemon: removal of container container_name is already in progress
The environment I am using:
Upvotes: 1
Views: 6593
Reputation: 486
after restarting docker daemon, I can remove the container.
sudo service docker restart
sudo docker rm -f container_name
Upvotes: 0