Windows:
Powershell
docker images -a -q | % { docker image rm $_ -f }
Commandline
for /F %i in ('docker images -a -q') do docker rmi -f %i
Linux:
docker rmi -f $(docker images -a -q)
Windows:
Powershell
docker images -a -q | % { docker image rm $_ -f }
Commandline
for /F %i in ('docker images -a -q') do docker rmi -f %i
Linux:
docker rmi -f $(docker images -a -q)
For further actions, you may consider blocking this person and/or reporting abuse
Anirban Das -
Emily Johnson -
Lukas Mauser -
Mohammed Muqtadir Ahad -
Top comments (1)
Use : docker image prune -a