Docker cleaning killer/Docker overlay file takes up too much disk space

Docker cleaning killer/Docker overlay file takes up too much disk space

[Looking at all the migration files on the Internet, I feel that they are unreliable and only treat the symptoms but not the root cause (this is not what a new generation coder should be like)]

After checking with du -sh*, I found that the overlay folder had exploded.

docker system prune -a only cleared 7g of space, and the folder is still 30g

The disk usage dropped from 100% to about 80%, which is not acceptable. It is still full after running for another two days!

Finally, the killer is here, install portainer

A bunch of docker installation tutorials

I use dokcer-compose to deploy here, so the following is the configuration

 Portainer:
  image: portainer/portainer
  restart: always
  ports:
  - "9000:9000"
  volumes:
  - /var/run/docker.sock:/var/run/docker.sock
  - /data/docker/portainer/data:/data

After up -d, nginx will get the port out and access it.

Remove all the unused ones.

I can finally paddling without any worries after checking the disk usage again~~~

ps: In fact, our department has used this method before, but... . . . . Uh, I forgot. Uh, uh, uh. . . . So write it down as a lesson~

Additional knowledge: Centos7 configures overlay storage driver for Docker

premise:

RHEL or CentOS uses the new Docker storage driver (overlay or overlay2), and needs to upgrade the system kernel version to 3.10.0-514 or later. The steps of combing are as follows:

Confirm the kernel

Version 3.10.0-514 or later

uname -r

3.10.0-514.++++.x86_64

System Upgrade

sudo yum upgrade --assumeyes --tolerant

sudo yum update --assumeyes

Confirm whether the kernel has loaded the overlay module

lsmod | grep overlay

If the return value is empty, you need to configure the module loading

Enable overlay

sudo tee /etc/modules-load.d/overlay.conf <<-'EOF'
overlay
EOF

Restart the system

reboot

Confirm overlay is enabled

lsmod | grep overlay

overlay

Preparing Docker storage partition

It is strongly recommended to prepare another disk or partition, add the parameter -n ftype=1 to format it as xfs, and then mount /var/lib/docker on it:

Reasons

When formatting the XFS file system, you must add -n ftype=1

Parameter: -n does not actually create the file system, but only displays the created information;

ftype = value allows the inode type to be stored in the directory structure so that readdir and getdents can know the inode type without looking up the inode. The default is 0, which does not exist in the directory structure.

Format local disk

Make sure that the local disk is formatted correctly.

mkfs.xfs -f -n ftype=1 /dev/sdg5

Confirm disk information

lsblk -a -f 
NAME FSTYPE LABEL UUID MOUNTPOINT
 
├─sdg4             
├─sdg5 xfs 71165973-9e3f-4d8e-9a4e-2c00c0e70efa

Configure disk boot mount

more /etc/fstab

UUID=71165973-9e3f-4d8e-9a4e-2c00c0e70efa /var/lib/docker xfs defaults 0 0

Manually mount the disk

mount -a

View disk mount information

lsblk

├─sdg5 8:101 0 200G 0 part /var/lib/docker

Modify the docker startup file and set it to use overlay storage

more /etc/sysconfig/docker

# /etc/sysconfig/docker
 
# Modify these options if you want to change the way the docker daemon runs
OPTIONS='--storage-driver=overlay --selinux-enabled --log-driver=journald --signature-verification=false' 
if [ -z "${DOCKER_CERT_PATH}" ]; then
 DOCKER_CERT_PATH=/etc/docker
fi

or

/etc/docker/daemon.json
{
 "storage-driver": "overlay2",
 "storage-opts": [
 "overlay2.override_kernel_check=true"
 ]
}

Add startup

systemctl daemon-reload
systemctl start docker
systemctl enable docker

Verify Docker storage related information

$ docker info
 
Containers: 0
Images: 0
Storage Driver: overlay2
 Backing Filesystem: xfs
 Supports d_type: true <<=== Focus on Native Overlay Diff: true
<output truncated>

If you use Docker with an overlay/overlay driver that does not support d_typ, it means that Docker may encounter some errors when operating files, such as failure to delete certain directories or files, failure to set file or directory permissions or users, etc. These are unexpected errors.

For example, when Docker is building, operations such as deleting files may fail during the building process, causing the building to stop.

The above article about docker cleaning killer/solution to the problem of docker overlay files occupying too much disk is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • Docker Overlay2 disk space usage is too large to clean up the method

<<:  Express implements login verification

>>:  Summary of commonly used multi-table modification statements in Mysql and Oracle

Recommend

Solution to the ineffective margin of div nested in HTML

Here's a solution to the problem where margin...

Analysis of MySQL latency issues and data flushing strategy process

Table of contents 1. MySQL replication process 2....

How to create a Django project + connect to MySQL

1: django-admin.py startproject project name 2: c...

Ten Experiences in Web Design in 2008

<br />The Internet is constantly changing, a...

The use of v-model in vue3 components and in-depth explanation

Table of contents Use two-way binding data in v-m...

Implementation of code optimization for Vue2.x project performance optimization

Table of contents 1 Use of v-if and v-show 2. Dif...

Steps to encapsulate the carousel component in vue3.0

Table of contents 1: Encapsulation idea 2. Packag...

JavaScript color viewer

This article example shares the specific code of ...

Web Theory: Don't make me think Reading Notes

Chapter 1 <br />The most important principl...

Analysis of idea compiler vue indentation error problem scenario

Project scenario: When running the Vue project, t...

Vue2/vue3 routing permission management method example

1. There are generally two methods for Vue routin...

Tips for viewing History records and adding timestamps in Linux

Tips for viewing History records and adding times...

Detailed explanation of various methods of Vue component communication

Table of contents 1. From father to son 2. From s...

Detailed tutorial on installing Docker on Windows

Since my local MySQL version is relatively low, I...

Detailed explanation of ES6 Promise usage

Table of contents What is a Promise? Usage of rej...