Skip to content

Commit 0346a27

Browse files
committed
Update notes
1 parent 4a90ef0 commit 0346a27

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

learn/DevOps/Docker/README.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
- [¿Problematicas del desarrollo de software profesional?](#problematicas-del-desarrollo-de-software-profesional)
66
- [Comandos](#comandos)
77
- [Construir aplicaciones](#construir-aplicaciones)
8+
- [Borrar imagenes none](#borrar-imagenes-none)
89

910
# Introducción
1011

@@ -142,4 +143,12 @@ Docker en Docker
142143
docker run -it --rm -v /var/run/docker.sock:/var/run/docker.sock docker:18.06.1-ce
143144
```
144145

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

Comments
 (0)