Docker

***Pull and run [commandline]
Step1: sudo docker pull mysql/mysql-server:latest sudo docker images
Step2: Deploy Containersudo docker run --name=[container_name] -d [image_tag_name] → sudo docker run --name=[container_name] -d mysql/mysql-server:latest
Step3: Connect bash shell of container sudo docker exec -it [container_name] bash
Bonus: sudo docker start [container_name] sudo docker stop [container_name] sudo docker restart [container_name]

Clear all container & image...
docker system prune -a
docker volume prune --force
docker network prune

Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
CtrlP
) instead.