Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

install docker on windows using powershell

# Set the TLS version used by the PowerShell client to TLS 1.2.
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12;
Install-Module -Name DockerMsftProvider -Repository PSGallery -Force
Install-Package -Name docker -ProviderName DockerMsftProvider
#You need to restart the computer for this to be usable
Restart-Computer -Force
#After Reboot
Get-Package -Name Docker -ProviderName DockerMsftProvider
Find-Package -Name Docker -ProviderName DockerMsftProvider
Install-Package -Name Docker -ProviderName DockerMsftProvider -Update -Force
Start-Service Docker
Comment

PREVIOUS NEXT
Code Example
Shell :: move from commit to stage 
Shell :: multiply command bash 
Shell :: apply gitignore after commit 
Shell :: my apache is not running ubuntu 
Shell :: git stash with message 
Shell :: how to change permissions on a file in linux 
Shell :: git change email of old commit 
Shell :: docker command not available in ubuntu wsl 
Shell :: install vnc server pi 
Shell :: how to check if a commit is in a branch 
Shell :: react router install 
Shell :: install vscode linux 
Shell :: see map size linux 
Shell :: ubuntu vim-plug install 
Shell :: Port 5000 is not open on localhost, could not start functions emulator 
Shell :: pesquisar git 
Shell :: if regex bash 
Shell :: visual studio code update git password 
Shell :: edit branch name git 
Shell :: how to install graphviz jupyter 
Shell :: split string in shell script 
Shell :: git code push 
Shell :: export to path pipenv bash 
Shell :: create new branch without losing changes 
Shell :: ansible copy 
Shell :: httpd https 
Shell :: localhost run 
Shell :: zsh: command not found: npm 
Shell :: how to run different python version 
Shell :: git submodule remove 
ADD CONTENT
Topic
Content
Source link
Name
7+7 =