Home Operation and Maintenance Docker What happens when docker fails to share hard disk?

What happens when docker fails to share hard disk?

Apr 19, 2023 pm 05:18 PM

In the process of using Docker, sometimes we need to share Docker images and containers between different machines. A simple way is to package these images and containers into tar files, then transfer them to the target machine through the network, and then decompress and load them into Docker. However, even if we successfully transfer these images and containers to the target machine, we often encounter such a problem: unable to load the image or start the container, prompting "no space left on device", that is, the partition disk space is insufficient, especially when This problem is more likely to be encountered when using storage driver What happens when docker fails to share hard disk?.

What the hell is going on? I once encountered a similar problem. After some investigation and research, I found the reasons and solutions:

  1. The working principle of the What happens when docker fails to share hard disk? storage driver

Docker storage Drivers include AUFS, DeviceMapper and OverlayFS, among which What happens when docker fails to share hard disk? is the more popular one. It is based on the overlayFS file system, superimposing multiple mirrored file systems to form a joint mount point, making it appear to be a complete file system, as shown in the following figure:

What happens when docker fails to share hard disk?

As shown in the figure, the blue part is the file system of the basic image, the green part is the file system of the container layer, and the red part is the file system of the read-only layer. The read-only layer contains the file system common to all images. The container layer is the file system of each container. It creates a read-only layer for each container and adds a writable layer on top of it so that each container can see It is an independent file system and does not interfere with each other.

  1. Cause of insufficient partition space

When we create a Docker container, the What happens when docker fails to share hard disk? storage driver will be created for each container in the /var/lib/docker/What happens when docker fails to share hard disk? directory A separate subdirectory for the container's file system. The file data in these subdirectories are all stored in the base image, so their size does not affect the performance of the storage driver. However, when we package the Docker image and container from one machine and send it to another machine, when the What happens when docker fails to share hard disk? storage driver unpacks the data, it decompresses it to the /var/lib/docker directory, resulting in this directory The file space occupied is too large, and the disk space of the partition where /var/lib/docker is located has also become smaller accordingly. The following figure takes the /var/lib/docker directory as an example to reflect this problem:

What happens when docker fails to share hard disk?_space

In this picture, the /dev/vda1 partition disk size is 50GB and the /var/lib/docker partition disk size is 21GB. However, because docker creates too many containers, /var/ There is insufficient space in the lib/docker directory, only 30.72MB is left. Therefore, when we want to start the container from such a machine with a shortage of disk space, there will be a problem of startup failure.

  1. What are the related solutions?
    In response to the above problems, I have provided some solutions:

3.1 Expand the partition disk space

This is the most common method. For virtual machines, we You can expand the disk partition size in the virtual machine management tool and restart the virtual machine. For cloud servers, most cloud platforms provide the function of online disk expansion, but the operation process is relatively complicated and requires caution to avoid data loss.

3.2 Mount the /var/lib/docker directory to a larger data disk

Prepare a disk larger than 21GB (such as 20T) in advance and format it into ext4 format, and mount it on /data directory, and then migrate the /var/lib/docker directory to the data disk for storage. The specific operation instructions are as follows:

# 制作文件系统格式
mkfs.ext4 /dev/vdb

# 挂载
mount /dev/vdb /data

# 备份原/var/lib/docker目录下所有数据
cp -au /var/lib/docker/* /data/

# 卸载/var/lib/docker目录
umount /var/lib/docker

# 将/var/lib/docker目录迁移到新的数据盘中
echo '/dev/vdb /var/lib/docker ext4 defaults 0 0' >> /etc/fstab
mount -a
Copy after login

3.3 Delete Docker images and containers that are no longer used

We can use the following command to clean up disk space:

# 清理所有停止的容器
docker container prune

# 清理所有未被标记的镜像
docker image prune -a

# 删除所有没有容器使用的镜像
docker image prune -a --filter "dangling=true"
Copy after login

Summary
In use When Docker, we need to always pay attention to whether the space used by the storage driver is enough, otherwise it may cause startup failure. To do this, you can take one of the above three solutions. I personally recommend the second method, which can quickly solve the problem without destroying the original file system. I hope my sharing can be helpful to you, thank you for reading.

The above is the detailed content of What happens when docker fails to share hard disk?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How do I deploy applications to a Docker Swarm cluster? How do I deploy applications to a Docker Swarm cluster? Mar 17, 2025 pm 04:20 PM

The article details deploying applications to Docker Swarm, covering preparation, deployment steps, and security measures during the process.

What are Kubernetes pods, deployments, and services? What are Kubernetes pods, deployments, and services? Mar 17, 2025 pm 04:25 PM

The article explains Kubernetes' pods, deployments, and services, detailing their roles in managing containerized applications. It discusses how these components enhance scalability, stability, and communication within applications.(159 characters)

How do I scale applications in Kubernetes? How do I scale applications in Kubernetes? Mar 17, 2025 pm 04:28 PM

The article discusses scaling applications in Kubernetes using manual scaling, HPA, VPA, and Cluster Autoscaler, and provides best practices and tools for monitoring and automating scaling.

How do I manage deployments in Kubernetes? How do I manage deployments in Kubernetes? Mar 17, 2025 pm 04:27 PM

The article discusses managing Kubernetes deployments, focusing on creation, updates, scaling, monitoring, and automation using various tools and best practices.

How do I manage services in Docker Swarm? How do I manage services in Docker Swarm? Mar 17, 2025 pm 04:22 PM

Article discusses managing services in Docker Swarm, focusing on creation, scaling, monitoring, and updating without downtime.

How do I implement rolling updates in Docker Swarm? How do I implement rolling updates in Docker Swarm? Mar 17, 2025 pm 04:23 PM

The article discusses implementing rolling updates in Docker Swarm to update services without downtime. It covers updating services, setting update parameters, monitoring progress, and ensuring smooth updates.

What Are the Best Ways to Optimize Docker for Low-Latency Applications? What Are the Best Ways to Optimize Docker for Low-Latency Applications? Mar 14, 2025 pm 02:00 PM

The article discusses strategies to optimize Docker for low-latency applications, focusing on minimizing image size, using lightweight base images, and adjusting resource allocation and network settings.

How do I optimize Docker images for size and performance? How do I optimize Docker images for size and performance? Mar 14, 2025 pm 02:14 PM

Article discusses optimizing Docker images for size and performance using multi-stage builds, minimal base images, and tools like Docker Scout and Dive.

See all articles