├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── .vscode └── tasks.json ├── Docker.PowerShell.sln ├── LICENSE ├── Nuget.config ├── README.md ├── appveyor.yml ├── global.json ├── src ├── Docker.PowerShell │ ├── Cmdlets │ │ ├── AddContainerImageTag.cs │ │ ├── ContainerArgumentCompleter.cs │ │ ├── ConvertToContainerImage.cs │ │ ├── CopyContainerFile.cs │ │ ├── CreateContainerCmdlet.cs │ │ ├── DkrCmdlet.cs │ │ ├── DockerFactory.cs │ │ ├── EnterContainerSession.cs │ │ ├── ExportContainerImage.cs │ │ ├── GetContainer.cs │ │ ├── GetContainerDetail.cs │ │ ├── GetContainerImage.cs │ │ ├── GetContainerNetwork.cs │ │ ├── GetContainerNetworkDetail.cs │ │ ├── ImageArgumentCompleter.cs │ │ ├── ImageOperationCmdlet.cs │ │ ├── ImportContainerImage.cs │ │ ├── InvokeContainerImage.cs │ │ ├── JsonMessageWriter.cs │ │ ├── MultiContainerOperationCmdlet.cs │ │ ├── NetworkArgumentCompleter.cs │ │ ├── NetworkOperationCmdlet.cs │ │ ├── NewContainer.cs │ │ ├── NewContainerImage.cs │ │ ├── NewContainerNetwork.cs │ │ ├── ParameterResolvers.cs │ │ ├── RemoveContainer.cs │ │ ├── RemoveContainerImage.cs │ │ ├── RemoveContainerNetwork.cs │ │ ├── RequestContainerImage.cs │ │ ├── SingleContainerOperationCmdlet.cs │ │ ├── StartContainer.cs │ │ ├── StartContainerProcess.cs │ │ ├── StopContainer.cs │ │ ├── SubmitContainerImage.cs │ │ └── WaitContainer.cs │ ├── Docker.Format.ps1xml │ ├── Docker.PowerShell.xproj │ ├── Docker.psd1 │ ├── Docker.psm1 │ ├── Help │ │ ├── Add-ContainerImageTag.md │ │ ├── ConvertTo-ContainerImage.md │ │ ├── Copy-ContainerFile.md │ │ ├── Enter-ContainerSession.md │ │ ├── Export-ContainerImage.md │ │ ├── Get-Container.md │ │ ├── Get-ContainerDetail.md │ │ ├── Get-ContainerImage.md │ │ ├── Get-ContainerNet.md │ │ ├── Get-ContainerNetDetail.md │ │ ├── Import-ContainerImage.md │ │ ├── Invoke-ContainerImage.md │ │ ├── New-Container.md │ │ ├── New-ContainerImage.md │ │ ├── New-ContainerNet.md │ │ ├── Remove-Container.md │ │ ├── Remove-ContainerImage.md │ │ ├── Remove-ContainerNet.md │ │ ├── Request-ContainerImage.md │ │ ├── Start-Container.md │ │ ├── Start-ContainerProcess.md │ │ ├── Stop-Container.md │ │ ├── Submit-ContainerImage.md │ │ └── Wait-Container.md │ ├── Objects │ │ ├── ContainerOperations.cs │ │ ├── JsonMessage.cs │ │ └── NetworkOperations.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Support │ │ ├── Archiver.cs │ │ ├── AsyncPump.cs │ │ ├── ConsoleStream.cs │ │ ├── LinuxConsoleStream.cs │ │ ├── MultiplexedStreamExtensions.cs │ │ ├── Pipe.cs │ │ ├── PipeReadStream.cs │ │ ├── PipeWriteStream.cs │ │ ├── ProgressReader.cs │ │ └── Win32ConsoleStream.cs │ └── project.json └── Tar │ ├── Tar.xproj │ ├── TarCommon.cs │ ├── TarEntry.cs │ ├── TarEntryType.cs │ ├── TarHeader.cs │ ├── TarHeaderView.cs │ ├── TarParseException.cs │ ├── TarReader.cs │ ├── TarReaderExtensions.cs │ ├── TarReaderStream.cs │ ├── TarTime.cs │ ├── TarWriter.cs │ ├── TarWriterExtensions.cs │ ├── TarWriterStream.cs │ └── project.json └── test └── pester ├── BuildContainer.Tests.ps1 ├── InvokeContainerImage.Tests.ps1 ├── NewContainer.Tests.ps1 ├── StartContainer.Tests.ps1 └── Utils.ps1 /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Docker.PowerShell.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/Docker.PowerShell.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/LICENSE -------------------------------------------------------------------------------- /Nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/Nuget.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/appveyor.yml -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/global.json -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/AddContainerImageTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/AddContainerImageTag.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/ContainerArgumentCompleter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/ContainerArgumentCompleter.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/ConvertToContainerImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/ConvertToContainerImage.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/CopyContainerFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/CopyContainerFile.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/CreateContainerCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/CreateContainerCmdlet.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/DkrCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/DkrCmdlet.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/DockerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/DockerFactory.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/EnterContainerSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/EnterContainerSession.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/ExportContainerImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/ExportContainerImage.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/GetContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/GetContainer.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/GetContainerDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/GetContainerDetail.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/GetContainerImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/GetContainerImage.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/GetContainerNetwork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/GetContainerNetwork.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/GetContainerNetworkDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/GetContainerNetworkDetail.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/ImageArgumentCompleter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/ImageArgumentCompleter.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/ImageOperationCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/ImageOperationCmdlet.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/ImportContainerImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/ImportContainerImage.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/InvokeContainerImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/InvokeContainerImage.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/JsonMessageWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/JsonMessageWriter.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/MultiContainerOperationCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/MultiContainerOperationCmdlet.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/NetworkArgumentCompleter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/NetworkArgumentCompleter.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/NetworkOperationCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/NetworkOperationCmdlet.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/NewContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/NewContainer.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/NewContainerImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/NewContainerImage.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/NewContainerNetwork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/NewContainerNetwork.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/ParameterResolvers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/ParameterResolvers.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/RemoveContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/RemoveContainer.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/RemoveContainerImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/RemoveContainerImage.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/RemoveContainerNetwork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/RemoveContainerNetwork.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/RequestContainerImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/RequestContainerImage.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/SingleContainerOperationCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/SingleContainerOperationCmdlet.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/StartContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/StartContainer.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/StartContainerProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/StartContainerProcess.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/StopContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/StopContainer.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/SubmitContainerImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/SubmitContainerImage.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Cmdlets/WaitContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Cmdlets/WaitContainer.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Docker.Format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Docker.Format.ps1xml -------------------------------------------------------------------------------- /src/Docker.PowerShell/Docker.PowerShell.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Docker.PowerShell.xproj -------------------------------------------------------------------------------- /src/Docker.PowerShell/Docker.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Docker.psd1 -------------------------------------------------------------------------------- /src/Docker.PowerShell/Docker.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Docker.psm1 -------------------------------------------------------------------------------- /src/Docker.PowerShell/Help/Add-ContainerImageTag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Help/Add-ContainerImageTag.md -------------------------------------------------------------------------------- /src/Docker.PowerShell/Help/ConvertTo-ContainerImage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Help/ConvertTo-ContainerImage.md -------------------------------------------------------------------------------- /src/Docker.PowerShell/Help/Copy-ContainerFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Help/Copy-ContainerFile.md -------------------------------------------------------------------------------- /src/Docker.PowerShell/Help/Enter-ContainerSession.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Help/Enter-ContainerSession.md -------------------------------------------------------------------------------- /src/Docker.PowerShell/Help/Export-ContainerImage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Help/Export-ContainerImage.md -------------------------------------------------------------------------------- /src/Docker.PowerShell/Help/Get-Container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Help/Get-Container.md -------------------------------------------------------------------------------- /src/Docker.PowerShell/Help/Get-ContainerDetail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Help/Get-ContainerDetail.md -------------------------------------------------------------------------------- /src/Docker.PowerShell/Help/Get-ContainerImage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Help/Get-ContainerImage.md -------------------------------------------------------------------------------- /src/Docker.PowerShell/Help/Get-ContainerNet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Help/Get-ContainerNet.md -------------------------------------------------------------------------------- /src/Docker.PowerShell/Help/Get-ContainerNetDetail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Help/Get-ContainerNetDetail.md -------------------------------------------------------------------------------- /src/Docker.PowerShell/Help/Import-ContainerImage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Help/Import-ContainerImage.md -------------------------------------------------------------------------------- /src/Docker.PowerShell/Help/Invoke-ContainerImage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Help/Invoke-ContainerImage.md -------------------------------------------------------------------------------- /src/Docker.PowerShell/Help/New-Container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Help/New-Container.md -------------------------------------------------------------------------------- /src/Docker.PowerShell/Help/New-ContainerImage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Help/New-ContainerImage.md -------------------------------------------------------------------------------- /src/Docker.PowerShell/Help/New-ContainerNet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Help/New-ContainerNet.md -------------------------------------------------------------------------------- /src/Docker.PowerShell/Help/Remove-Container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Help/Remove-Container.md -------------------------------------------------------------------------------- /src/Docker.PowerShell/Help/Remove-ContainerImage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Help/Remove-ContainerImage.md -------------------------------------------------------------------------------- /src/Docker.PowerShell/Help/Remove-ContainerNet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Help/Remove-ContainerNet.md -------------------------------------------------------------------------------- /src/Docker.PowerShell/Help/Request-ContainerImage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Help/Request-ContainerImage.md -------------------------------------------------------------------------------- /src/Docker.PowerShell/Help/Start-Container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Help/Start-Container.md -------------------------------------------------------------------------------- /src/Docker.PowerShell/Help/Start-ContainerProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Help/Start-ContainerProcess.md -------------------------------------------------------------------------------- /src/Docker.PowerShell/Help/Stop-Container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Help/Stop-Container.md -------------------------------------------------------------------------------- /src/Docker.PowerShell/Help/Submit-ContainerImage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Help/Submit-ContainerImage.md -------------------------------------------------------------------------------- /src/Docker.PowerShell/Help/Wait-Container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Help/Wait-Container.md -------------------------------------------------------------------------------- /src/Docker.PowerShell/Objects/ContainerOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Objects/ContainerOperations.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Objects/JsonMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Objects/JsonMessage.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Objects/NetworkOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Objects/NetworkOperations.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Support/Archiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Support/Archiver.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Support/AsyncPump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Support/AsyncPump.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Support/ConsoleStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Support/ConsoleStream.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Support/LinuxConsoleStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Support/LinuxConsoleStream.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Support/MultiplexedStreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Support/MultiplexedStreamExtensions.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Support/Pipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Support/Pipe.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Support/PipeReadStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Support/PipeReadStream.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Support/PipeWriteStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Support/PipeWriteStream.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Support/ProgressReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Support/ProgressReader.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/Support/Win32ConsoleStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/Support/Win32ConsoleStream.cs -------------------------------------------------------------------------------- /src/Docker.PowerShell/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Docker.PowerShell/project.json -------------------------------------------------------------------------------- /src/Tar/Tar.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Tar/Tar.xproj -------------------------------------------------------------------------------- /src/Tar/TarCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Tar/TarCommon.cs -------------------------------------------------------------------------------- /src/Tar/TarEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Tar/TarEntry.cs -------------------------------------------------------------------------------- /src/Tar/TarEntryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Tar/TarEntryType.cs -------------------------------------------------------------------------------- /src/Tar/TarHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Tar/TarHeader.cs -------------------------------------------------------------------------------- /src/Tar/TarHeaderView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Tar/TarHeaderView.cs -------------------------------------------------------------------------------- /src/Tar/TarParseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Tar/TarParseException.cs -------------------------------------------------------------------------------- /src/Tar/TarReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Tar/TarReader.cs -------------------------------------------------------------------------------- /src/Tar/TarReaderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Tar/TarReaderExtensions.cs -------------------------------------------------------------------------------- /src/Tar/TarReaderStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Tar/TarReaderStream.cs -------------------------------------------------------------------------------- /src/Tar/TarTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Tar/TarTime.cs -------------------------------------------------------------------------------- /src/Tar/TarWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Tar/TarWriter.cs -------------------------------------------------------------------------------- /src/Tar/TarWriterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Tar/TarWriterExtensions.cs -------------------------------------------------------------------------------- /src/Tar/TarWriterStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Tar/TarWriterStream.cs -------------------------------------------------------------------------------- /src/Tar/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/src/Tar/project.json -------------------------------------------------------------------------------- /test/pester/BuildContainer.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/test/pester/BuildContainer.Tests.ps1 -------------------------------------------------------------------------------- /test/pester/InvokeContainerImage.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/test/pester/InvokeContainerImage.Tests.ps1 -------------------------------------------------------------------------------- /test/pester/NewContainer.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/test/pester/NewContainer.Tests.ps1 -------------------------------------------------------------------------------- /test/pester/StartContainer.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/test/pester/StartContainer.Tests.ps1 -------------------------------------------------------------------------------- /test/pester/Utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Docker-PowerShell/HEAD/test/pester/Utils.ps1 --------------------------------------------------------------------------------