When using Docker in development environment, you might need to restart or clean docker containers fully. Here are some helpful commands.
List all containers (only IDs)
docker stop $(docker ps -aq)
Stop all running containers
docker stop $(docker ps -aq)
Remove all containers
docker rm $(docker ps -aq)
Remove all images
docker rmi $(docker images -q)