Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
dsc
 
 
 
 
 
 
env
 
 
git
 
 
iis
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
s6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Install docker tools

choco install -y docker docker-compose docker-machine

Useful commands

  • Remove all containers:

    docker ps --format "{{.ID}}" -a | % {docker rm $_}
    
  • Remove all container based on a specific image

    docker ps -f ancestor=windowsservercore -a --format "{{.ID}}" | % {docker rm $_}
    
  • Remove all untagged (dangling) images

    docker images -f dangling=true --format "{{.ID}}" | % {docker rmi $_}
    
You can’t perform that action at this time.