[CmdletBinding(SupportsShouldProcess)]param( [string[]]$ProjectPath=@($PWD) ) $ProjectPath | ForEach-Object { docker-compose --file $(Resolve-Path $(Join-Path $_ docker-compose.yml)) config | less }