Skip to content

[no] Posts

Stop and Remove ALL Docker Containers and Images

18. juni 2018 • [no] 1 min read

Stop and Remove ALL Docker Containers and Images

This is shamelessly stolen from The Humble Developer.

List All Containers

docker ps -a

Stop All Running Containers

docker stop $(docker ps -aq)

Remove All Containers

docker rm $(docker ps -aq)

Remove All Images

docker rmi $(docker images -q)

Forfatter: Chuck Conway spesialiserer seg på programvareutvikling og Generativ AI. Koble til ham på sosiale medier: X (@chuckconway) eller besøk ham på YouTube.

[no] ↑ Back to top

[no] You may also like