Docker and Kubernetes

Master containerization with Docker and orchestration with Kubernetes.

advanced DevOps & Deployment 6 hours

Chapter 7: Docker Volumes and Storage

Chapter 7 of 15

Chapter 7: Docker Volumes and Storage

7.1 Volume Types

Docker volumes persist data beyond container lifecycle.

  • Named volumes
  • Bind mounts
  • tmpfs mounts

7.2 Managing Volumes

docker volume create myvolume
docker run -v myvolume:/data image
docker volume ls
docker volume rm myvolume