15 lines
403 B
PowerShell
15 lines
403 B
PowerShell
[CmdletBinding(SupportsShouldProcess)]param(
|
|
[ArgumentCompleter({ param (
|
|
$commandName,
|
|
$parameterName,
|
|
$wordToComplete,
|
|
$commandAst,
|
|
$fakeBoundParameters
|
|
)
|
|
[DockerComposeDirs]::_GetValidValues($wordToComplete,$true)
|
|
})]
|
|
[string[]]$ProjectPath=@($PWD)
|
|
)
|
|
|
|
Invoke-DockerCompose -ProjectPath $ProjectPath 'config' | Out-String -Stream | less
|