Skip to main content

Posts

Showing posts with the label docker image

Docker daliy command

Docker daily command: Docker Help: To get help on a topic in Docker, you can use #docker topicName --help Docker Note: Application running in a VM is hidden from the host OS with the help of Hypervisor/ VMM . Container can alter host filesystem without any restriction. Docker Information: #docker version #docker info Docker Images: #docker pull <image_name> #docker history <image_name> #docker history mysql/mysql-server:8.0.18 #docker search mysql --no-trunc List images: #docker images -a Remove images: #docker rmi <image_id | image_name> #docker rmi -f <image_id | image_name> Purging All: #docker system prune -a #docker system prune Docker daemon start  | stop | pause: #systemctl start / stop/ status docker #service docker start / stop/ status Docker for MySQL:   Note: Get tag information for Docker for MySQL from - https://hub.docker.com/_/mysql Community Edition: #docker pull mysql/mysql_server:<tag_name OR tag no.> MySQL Docker Enterprise...