Docker command line

Windocks functionality can be invoked using docker commands running on the same machine as Windocks. Use Windows command or Powershell. To run command from remote machines, use the REST API.
FunctionCommand line
View all imagesdocker images
View all containersdocker ps
Create a containerdocker create YourImageName
Start a container you createddocker start ContainerNameOrFirstThreeLettersOfYourContainerId
Stop a containerdocker stop ContainerNameOrFirstThreeLettersOfYourContainerId
Create and start a containerdocker run -d YourImageName
Build an imagedocker build -t ImageNameYouWant path\to\directory\containing\dockerfile
Refresh image with log backupsdocker exec YourImageName path\to\directory\containing\backups
Delete an imagedocker rmi YourImageName