First big articles reformatting now that I properly understand hugo

This commit is contained in:
Julien Dessaux 2021-03-11 19:47:26 +01:00
parent 5e6844592a
commit 1a4981a826
40 changed files with 184 additions and 173 deletions

View file

@ -1,12 +1,15 @@
---
title: "Cleaning a docker host"
linkTitle: "Cleaning a docker host"
date: 2018-01-29
description: >
How to retrieve storage space by cleaning a docker host
description: How to retrieve storage space by cleaning a docker host
tags:
- docker
- linux
---
Be carefull that this will delete any stopped container and remove any locally unused image and tags :
## The command
Be careful that this will delete any stopped container and remove any locally unused images, volumes and tags :
{{< highlight sh >}}
docker system prune -f -a
{{< /highlight >}}