LangGrant Windocks provides Windocks Docker CLI for enterprise database teams, enabling fast database cloning and virtualization on standard infrastructure.
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.
| Function | Command line |
|---|---|
| View all images | docker images |
| View all containers | docker ps |
| Create a container | docker create YourImageName |
| Start a container you created | docker start ContainerNameOrFirstThreeLettersOfYourContainerId |
| Stop a container | docker stop ContainerNameOrFirstThreeLettersOfYourContainerId |
| Create and start a container | docker run -d YourImageName |
| Build an image | docker build -t ImageNameYouWant path\to\directory\containing\dockerfile |
| Refresh image with log backups | docker exec YourImageName path\to\directory\containing\backups |
| Delete an image | docker rmi YourImageName |
For more information, see the official Docker documentation.