29 lines
817 B
PowerShell
29 lines
817 B
PowerShell
|
$scriptPath = Split-Path $script:MyInvocation.MyCommand.Path
|
||
|
|
||
|
Write-Host "Current script directory is $scriptPath" -ForegroundColor Yellow
|
||
|
|
||
|
$imagesToDelete = docker images --filter=reference="eshop/*" -q
|
||
|
|
||
|
If (-Not $imagesToDelete) {Write-Host "Not deleting eShop images as there are no eShop images in the current local Docker repo."}
|
||
|
Else
|
||
|
{
|
||
|
# Delete all containers
|
||
|
Write-Host "Deleting all containers in local Docker Host"
|
||
|
docker rm $(docker ps -a -q) -f
|
||
|
|
||
|
# Delete all eshop images
|
||
|
Write-Host "Deleting eShop images in local Docker repo"
|
||
|
Write-Host $imagesToDelete
|
||
|
docker rmi $(docker images --filter=reference="eshop/*" -q) -f
|
||
|
}
|
||
|
|
||
|
|
||
|
# DELETE ALL IMAGES AND CONTAINERS
|
||
|
|
||
|
# Delete all containers
|
||
|
# docker rm $(docker ps -a -q) -f
|
||
|
|
||
|
# Delete all images
|
||
|
# docker rmi $(docker images -q)
|
||
|
|