12 lines
388 B
PowerShell
12 lines
388 B
PowerShell
#[CmdletBinding(SupportsShouldProcess)]param()
|
|
|
|
$local:dcParams = [string]::Empty
|
|
if( $args ) {
|
|
$dcParams = $args | ForEach-Object {
|
|
if( $_ -match "(?:^'[^']+'$)|(?:^`"[^`"]+`"$)|(?:^[^\s]+$)" ) { $_ }
|
|
else { "'$($_.Replace( "'", "''" ))'" }
|
|
}
|
|
}
|
|
docker-compose up -d --force-recreate --remove-orphans $dcParams && docker-compose logs --follow --tail 10 $dcParams
|
|
|