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.

9 lines
381 B

  1. Param([string] $rootPath)
  2. $scriptPath = Split-Path $script:MyInvocation.MyCommand.Path
  3. if ([string]::IsNullOrEmpty($rootPath)) {
  4. $rootPath = "$scriptPath\.."
  5. }
  6. Write-Host "Root path used is $rootPath" -ForegroundColor Yellow
  7. & .\build-bits.ps1 -rootPath $rootPath
  8. docker-compose -f "$rootPath\docker-compose-windows.yml" -f "$rootPath\docker-compose-windows.override.yml" up