I am unable to remove the dead container, it appears again after i restart the Docker service.
docker ps -a CONTAINER ID STATUS 11667ef1623
Try running the following commands. It always works for me.
# docker volume rm $(docker volume ls -qf dangling=true) # docker rm $(docker ps -q -f 'status=exited')
After execution of the above commands, restart docker by,
# service docker restart