Tag: images

  • Docker commands -2-

    Docker commands -2-

    Docker commands Containers Show running containers docker ps Show all containers docker ps -a Docker start container docker start xxx Docker stop container docker stop xxx Docker restart container docker restart xxx Docker remove container docker rm xxx Images Show images docker images Remove images docker rmi xxx Volumes List volumes docker volume ls Remove…

  • Docker container: Backup and Recovery

    Docker container: Backup and Recovery

    This config will describe a procedure of how to back up a Docker container as well as it will also show how to recover a Docker container from backup. To understand the Docker container backup and recovery process we first need to understand the difference between docker image and docker container. A docker image contains…