How to Remove the Containers

1. To get a list of the containers running and find IDs of Container
      $ docker container ls
2. To Stop the particular containing
Syntax
$ docker container stop [container id] 
Ex        $ docker container stop 0b2
[here 0b2 is a partial number from container id, this will also work]         
3. Remove all the stopped containers
     $ docker system prune