This repository was archived by the owner on Dec 8, 2021. It is now read-only.

Description
Problem Statement
When I run Start-Polaris inside a container, the container exits immediately because the command is asynchronous. I tried adding a Start-Sleep -Seconds 100 command after Start-Polaris, but this caused the route handlers to block, so the web server was non-responsive.
Proposed Solution
Add a -Wait parameter to the Start-Polaris command, to block script execution and force the command to run synchronously.