'Docker error response from daemon: Cannot kill container: bbfec3f85216: permission denied

I'm new to docker and i tried removing the container and its showing the error

enter image description here



Solution 1:[1]

docker container stop <container name>

and after that kill it

Solution 2:[2]

You need to add user to docker group to grant container management permissions:

groupadd docker
usermod -a -G docker omsairam

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Svyatoslav Kuznetsov
Solution 2 rzlvmp