mikeTWC1984

Results 151 comments of mikeTWC1984

Cronicle is not .net runtime, so this is not relevant. You can execute your .net core or mono programs (windows is not supported), and anything else you can execute via...

The above logs are fine - cronicle removes local (temp) files once data is uploaded to storage. It sounds like your master and backup are not in sync (are you...

You can run SSIS in containers without hacks, just init it with systemd. The real problem is that it doesn't work with Windows Auth. They claim it should work via...

below is a sample docker file. The only thing you'd need to run that set up command after creating container ```Dockerfile FROM mcr.microsoft.com/powershell:7.0.0-centos-7 RUN yum update -y RUN yum install...

OK, thanks for the info. It doesn't sound like that ReadKey issues is anywhere close to resolution though. I was looking for a hack just because I want to use...

I'll leave my workaround below, in case anybody also looking for options ``` powershell function New-PolarisServer { param($port=8888) $ps = [powershell]::create() $info = $ps.AddScript({param($p) Remove-Module PSReadline New-PolarisGetRoute -Path "/" -Scriptblock...

Yeah, live logs doesn't work well with things like that. If you just have 1 node setting below config might help: custom_live_log_socket_url Although it your case it might be blocked...

I guess you can enable github sponsors

@asharma2040 You need to keep static hostname (service name). IP may change. Share your deployment yaml if you still can't figure it out.

Actually, you can store documentation as static website in your repo. It should be under "docs" folder. Then you need to enable it in repo configuration. Your documentation site will...