Docker /var/lib/docker/aufs/mnt directory cleaning method

Docker /var/lib/docker/aufs/mnt directory cleaning method

The company's service uses docker, and the disk man is found. Then execute the following command to get it done

1. Create a script file

vi cleandocker.sh

The content is as follows:

#!/bin/sh
echo "====================== start clean docker containers logs ==========================="
logs=$(find /var/lib/docker/containers/ -name *-json.log)
for log in $logs
    do
   echo "clean logs : $log"
        cat /dev/null > $log
    done
echo "====================== end clean docker containers logs ==========================="

2. Authorize the script file

chmod 755 cleandocker.sh

3. Execute the script

./cleandocker.sh

This is the end of this article about how to clean up the docker /var/lib/docker/aufs/mnt directory. For more information about docker directory management, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Introduction to the differences between Docker aufs storage driver layer, diff, and mnt directories
  • Docker file system-AUFS principle introduction

<<:  MySQL 8.0.18 installation and configuration graphic tutorial

>>:  WeChat applet realizes the function of uploading pictures

Recommend

jQuery Ajax chatbot implementation case study

Chatbots can save a lot of manual work and can be...

Implementing file content deduplication and intersection and difference in Linux

1. Data Deduplication In daily work, there may be...

MySQL master-slave synchronization principle and application

Table of contents 1. Master-slave synchronization...

In-depth analysis of Nginx virtual host

Table of contents 1. Virtual Host 1.1 Virtual Hos...

What are the file attributes of crw, brw, lrw, etc. in Linux?

What is a file? All files are actually a string o...

Example of using mycat to implement MySQL database read-write separation

What is MyCAT A completely open source large data...

ThingJS particle effects to achieve rain and snow effects with one click

Table of contents 1. Particle Effects 2. Load the...

How to execute Linux shell commands in Docker

To execute a shell command in Docker, you need to...

Solution to MySQL replication failure caused by disk fullness

Table of contents Case scenario Solving the probl...

Websocket+Vuex implements a real-time chat software

Table of contents Preface 1. The effect is as sho...

How to define data examples in Vue

Preface In the development process, defining vari...

Comparison of several examples of insertion efficiency in Mysql

Preface Recently, due to work needs, I need to in...

Common problems and solutions during MySQL MGR construction

Table of contents 01 Common Faults 1 02 Common Fa...

TypeScript installation and use and basic data types

The first step is to install TypeScript globally ...

I have compiled a few cool design sites that I think are good.

You must have inspiration to design a website. Goo...