ContainerToolsForWindows is a Windows PowerShell module for downloading, installing, and setting up default configs for Containerd, Buildkit, Windows CNI plugin, and Nerdctl.
You can manually import this module using:
Import-Module -Name <absolute-path>\ContainerToolsForWindows.psd1 -ForceOption 2a:
-
Aternatively, you can add it to the Windows PowerShell module path. To get the possible module paths, use:
$env:PSModulePath -
Move the folder to any of the paths from the above PS command
Option 2b:
-
Add the location of the module directory to
$env:PSModulePath$env:PSModulePath += "$env:PSModulePath;<path-to-module-directory>"
-
Reload the terminal or open a new terminal
-
Import the module
Import-Module -Name ContainerToolsForWindows -Force
-
Get the module details
Get-Module -Name ContainerToolsForWindows
- Command reference
- Detailed command reference can be found in the About section
- Rename this module: The current name for this module might cause confusion with repo named windows-containers-tools
- Update README.md (Documentation)
- Update ContainerToolsForWindows/ContainerToolsForWindows.Format.ps1xml (Documentation)
- Update ContainerToolsForWindows/en-US/about_ContainerToolsForWindows.help.txt (Documentation)
- Publish module to PSGallery
- Dev install: (Hacks) Add functions in Containerd and Buildkit to build from source files. (Is this really necessary? May be an overkill)
- Use latest version in download
- Add Pester test
- Pipeline configuration
- Rootless installation