Skip to content

Instantly share code, notes, and snippets.

@MichaelSimons
Created April 12, 2019 19:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MichaelSimons/7705966c8054910ef9e1cfc96ecb853c to your computer and use it in GitHub Desktop.
Save MichaelSimons/7705966c8054910ef9e1cfc96ecb853c to your computer and use it in GitHub Desktop.

SDK Docker Images Contain PowerShell Core

Per requests from the community, PowerShell Core has been added to the .NET Core Docker SDK images. PowerShell Core is a cross-platform (Windows, Linux, and macOS) automation and configuration tool/framework that works well with your existing tools and is optimized for dealing with structured data (e.g. JSON, CSV, XML, etc.), REST APIs, and object models. It includes a command-line shell, an associated scripting language and a framework for processing cmdlets.

If you are new to PowerShell and would like to learn more, we recommend reviewing the getting started documentation.

You can try out PowerShell Core by running the following Docker command:

docker run --rm mcr.microsoft.com/dotnet/core/sdk:3.0 pwsh -c Write-Host "Hello Powershell"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment