Naik Rahul
Naik Rahul

Reputation: 17

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

Upvotes: 1

Views: 1233

Answers (2)

rzlvmp
rzlvmp

Reputation: 9394

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

groupadd docker
usermod -a -G docker omsairam

Upvotes: 0

Svyatoslav Kuznetsov
Svyatoslav Kuznetsov

Reputation: 405

docker container stop <container name>

and after that kill it

Upvotes: 1

Related Questions