Reputation: 17
I'm new to docker and I tried removing the container and its showing the error
Upvotes: 1
Views: 1233
Reputation: 9394
You need to add user to docker
group to grant container management permissions:
groupadd docker
usermod -a -G docker omsairam
Upvotes: 0
Reputation: 405
docker container stop <container name>
and after that kill it
Upvotes: 1