You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
Param([string] $rootPath)
|
|
$scriptPath = Split-Path $script:MyInvocation.MyCommand.Path
|
|
|
|
Write-Host "Current script directory is $scriptPath" -ForegroundColor Yellow
|
|
|
|
if ([string]::IsNullOrEmpty($rootPath)) {
|
|
$rootPath = "$scriptPath\.."
|
|
}
|
|
Write-Host "Root path used is $rootPath" -ForegroundColor Yellow
|
|
|
|
docker-compose -f "$rootPath\docker-compose-external.yml" -f "$rootPath\docker-compose-external.override.yml" up
|