2020-04-28 17:29:52 +02:00
|
|
|
---
|
|
|
|
title: "Cleaning a docker host"
|
|
|
|
date: 2018-01-29
|
2021-03-11 19:47:26 +01:00
|
|
|
description: How to retrieve storage space by cleaning a docker host
|
|
|
|
tags:
|
|
|
|
- docker
|
2020-04-28 17:29:52 +02:00
|
|
|
---
|
|
|
|
|
2021-03-11 19:47:26 +01:00
|
|
|
## The command
|
|
|
|
|
|
|
|
Be careful that this will delete any stopped container and remove any locally unused images, volumes and tags :
|
2020-04-28 17:29:52 +02:00
|
|
|
{{< highlight sh >}}
|
|
|
|
docker system prune -f -a
|
|
|
|
{{< /highlight >}}
|