2020-11-25 05:46:33 +00:00
|
|
|
[CmdletBinding(SupportsShouldProcess)]param(
|
|
|
|
[ArgumentCompleter({ param (
|
|
|
|
$commandName,
|
|
|
|
$parameterName,
|
|
|
|
$wordToComplete,
|
|
|
|
$commandAst,
|
|
|
|
$fakeBoundParameters
|
|
|
|
)
|
|
|
|
[DockerComposeDirs]::_GetValidValues($wordToComplete,$true)
|
|
|
|
})]
|
|
|
|
[string[]]$ProjectPath=@($PWD)
|
|
|
|
)
|
|
|
|
|
2021-01-15 06:15:54 +00:00
|
|
|
Invoke-DockerCompose -ProjectPath $ProjectPath 'config' | Out-String -Stream | less
|