skip to Main Content

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

enter image description here

2

Answers


  1. docker container stop <container name>
    

    and after that kill it

    Login or Signup to reply.
  2. You need to add user to docker group to grant container management permissions:

    groupadd docker
    usermod -a -G docker omsairam
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search