para borrar contenedores lo podemos hacer refiriendonos a ellos a traves de sus IDs o de sus nombres (generados)
por ejemplo
si del sgt listado
israelb@amco-israelb:~$docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
42c642ff303e ubuntu "/bin/bash" 2 hours ago Exited (0) 15 seconds ago sleepy_goodall
e7f3e0ce783e ubuntu "/bin/bash" 4 hours ago Exited (0) About an hour ago naughty_ardinghelli
para borrar el primero
docker rm 42c
y para borrar el segundo
docker rm naughty_ardinghelli
en este ultimo caso, debemos escribir todo el nombre
similarmente, se borran imagenes
israelb@amco-israelb:~$docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
nginx latest ae513a47849c 32 hours ago 109MB
este imagen se podria borrar
usando
docker rmi nginx
o
docker rmi ae5
sin embargo, en este caso la imagen tiene un contenedor asociado
israelb@amco-israelb:~$docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
f4ce76987b11 nginx "nginx -g 'daemon of…" 2 hours ago Up 2 hours 80/tcp sad_wozniak
por lo que habria que borrar primero ese contenedor y luego la imagen.
No hay comentarios:
Publicar un comentario