docker and docker-compose commands

Invoke-DockerCompose which will be the basis of all other future dc
prefixed commands (which currently contains to much copy-pasted code)
This commit is contained in:
lksz 2021-01-13 01:02:37 -05:00
parent 6e56ac6097
commit 24b5e928d0
14 changed files with 183 additions and 17 deletions

View file

@ -1,3 +1,7 @@
[CmdletBinding()]param([string[]]$Remotes = 'All')
[CmdletBinding()]param(
[string[]]$Remotes = 'All',
[switch]$OneLine
Invoke-ViaAnsible -Command "Update-OSz -Mode Auto" -Remotes:$($Remotes.ToLower())
)
Invoke-ViaAnsible -Command "Update-OSz -Mode Auto" -Remotes:$($Remotes.ToLower()) -OneLine:$OneLine