Clear unused Docker data
Overview
This script improves your privacy on macOS.
These changes use Mac system commands to update your settings.
This script frees up disk space, but also improves user privacy by:
-
Removal of stopped containers: Containers often run applications or services that might process sensitive or personal data. Even if a container is stopped, its filesystem remains intact, and potentially sensitive data inside it can be accessed. By removing stopped containers, we eliminate this potential privacy risk.
-
Deletion of unused images: Images can sometimes contain sensitive information, especially if they were built from
Dockerfile
s that copied local files or were used in scenarios where sensitive data was processed. Deleting unused images ensures that any inadvertent sensitive information embedded in those images is eradicated. -
Cleanup of network configurations: Networks, especially custom ones, can contain configurations that reveal details about system architecture, inter-container communication, or even hardcoded secrets. Removing unused networks mitigates risks associated with lingering, outdated, or insecure configurations.
-
Elimination of build cache: The Docker build process uses a cache to speed up image creation. This cache can contain remnants of previous builds, including potentially sensitive data or files. Pruning the build cache ensures that these remnants are deleted, further safeguarding privacy.
-
Footprint reduction: By consistently pruning unused Docker objects, the overall footprint of Docker on the system is reduced. This makes it harder for malicious actors to exploit any lingering or overlooked vulnerabilities in the system or Docker itself.
This script runs docker system prune -af
command to clean up unused Docker data 1.
Specifically, the command will 1:
- Remove all stopped containers.
- Remove all networks not used by at least one container.
- Remove all images not used by any container.
- Remove all build cache.
This script uses Bash (Shell script) scripting language.
This script is only recommended if you understand its implications. Some non-critical or features may no longer function correctly after running this script.
Implementation Details
-
Language: bash
-
Required Privileges: Administrative (sudo) access
-
Compatibility: macOS only
-
Reversibility: Some changes may be permanent
Explore Categories
- Clear third-party application data
- Privacy cleanup
This action belongs to Clear third-party application data category. This category configures macOS using 13 scripts. These scripts are organized in 1 categories. The category includes 11 subscripts and 1 subcategories that include more scripts and categories. Read more on category page ▶
This action belongs to Privacy cleanup category. This category configures macOS using 85 scripts. These scripts are organized in 12 categories. The category includes 6 subscripts and 6 subcategories that include more scripts and categories. Read more on category page ▶
Apply now
Choose one of three ways to apply:
- Automatically via privacy.sexy: The easiest and safest option.
- Manually by downloading: Requires downloading a file.
- Manually by copying: Advanced flexibility.
Alternative 1. Apply with Privacy.sexy
privacy.sexy is free and open-source application that lets securely apply this action easily.
privacy.sexy instructions
- Open or download the desktop application
- Search for the script name:
Clear unused Docker data
. - Check the script by clicking on the checkbox.
- Click on Run button at the bottom of the page.
Alternative 2. Download
This script is reversible, you can restore your changes to the initial/default state. The restore/revert methods provided here can help you fix issues.
If something goes wrong, use the Revert script provided above.
-
Download the script file by clicking on the button below:
-
Run the script file by clicking on it.
Alternative 3. Copy
This is for advanced users. Consider automatically applying or downloading the script for simpler way.
-
Open Terminal app
-
Copy the following code:
if type "docker" &> /dev/null; then
docker system prune -af
fi
- Paste the code into terminal.
- Press Enter to apply the code.
Some scripts requires restarting your computer to take affect.
Support
This website relies on your support.
Your donation helps keep the project alive and improves its content ❤️.
Share this page: