I am unable to remove the dead container, it appears again after i restart the Docker service.
docker ps -a CONTAINER ID STATUS 11667ef1623
For Deleting all dead container docker rm -f $(docker ps --all -q -f status=dead)
docker rm -f $(docker ps --all -q -f status=dead)
For deleting all exited container docker rm -f $(docker ps --all -q -f status=exited)
docker rm -f $(docker ps --all -q -f status=exited)
As I have -f is necessary
-f