I'm setting up a windows container in ACI (Azure Container Instances). There's a logs tab in ACI, but it's not being used by my container since the application runs as a service detached from the stdout. How do I direct a log file to the logs tab (i.e. send to stdout).
I've read posts about redirecting log files to /dev/stdout for linux containers, but what about for windows containers? Is it as easy as writing the log file to a specific location?
Here's the logs tab I'm talking about inside ACI, I would like the log file written by my application to display inside here...
(I know the container isn't running, this isn't the problem).