-
-
Save PixelRobots/706b8e66b78f4ba37003a0d2376403a9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Enable-WindowsOptionalFeature -Online -FeatureName:Microsoft-Hyper-V -All | |
Docker version | |
& "C:\Program Files\Docker\Docker\DockerCli.exe" -SwitchDaemon | |
Docker run microsoft/nanoserver | |
Docker ps -a | |
Install-Module posh-docker | |
Import-Module posh-docker | |
if (-Not (Test-Path $PROFILE)) { | |
New-Item $PROFILE -Type File -Force | |
} | |
Add-Content $PROFILE "`nImport-Module posh-docker" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment