We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a90ef0 commit 0346a27Copy full SHA for 0346a27
learn/DevOps/Docker/README.md
@@ -5,6 +5,7 @@
5
- [¿Problematicas del desarrollo de software profesional?](#problematicas-del-desarrollo-de-software-profesional)
6
- [Comandos](#comandos)
7
- [Construir aplicaciones](#construir-aplicaciones)
8
+ - [Borrar imagenes none](#borrar-imagenes-none)
9
10
# Introducción
11
@@ -142,4 +143,12 @@ Docker en Docker
142
143
docker run -it --rm -v /var/run/docker.sock:/var/run/docker.sock docker:18.06.1-ce
144
```
145
-https://hub.docker.com/_/docker/
146
+https://hub.docker.com/_/docker/
147
+
148
+## Borrar imagenes none
149
150
+A menudo es útil borrar imagenes construidas que no necesitamos o quedan huerfanas
151
152
+```sh
153
+docker image prune --filter="dangling=true"
154
+```
0 commit comments