November 2018
Beginner
230 pages
6h 4m
English
If you have ever used command-line completion, you will want to consider installing DockerCompletion for PowerShell. This tool provides command-line completion for Docker commands. It is fairly easy to install. You will need your system set up to allow the execution of the downloaded module. To do this, open a PowerShell command window with Run as Administrator, and issue the following command:
# allow remote signed scripts to runSet-ExecutionPolicy RemoteSigned
You can now close the Administrator command window and open a normal user PowerShell command window. To install the DockerCompletion module, issue this command:
# install Docker completionInstall-Module DockerCompletion -Scope CurrentUser ...
Read now
Unlock full access