docker

#install
curl -sSL https://get.docker.com/ | sh
systemctl start docker
systemctl enable docker
#remove
docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
docker rmi $(docker images -q)