mikeTWC1984

Results 151 comments of mikeTWC1984

That's permission error. I'm confused about your environment, what image or docker file are you using?

I tried this image, this works: ``` #!/usr/bin/env python3 print("hello") ``` I see it runs as root by default, so you shouldn't have any problems with accessing volumes

This image runs as root by default. No need to specify anything else. Are you getting error if running "hello world" script, or if you touching files on your volumes?

That should be doable. If you using nginx you can try below config. The trick is to add additional config for socket.io ``` location /scheduler/ { client_max_body_size 2048m; proxy_read_timeout 86400s;...

Check this for alternatives You can use webhook notification for messengers supporting Incoming Webhooks (l guess most of them support it), which is basically auth-less endpoint you can post your...

I think there is some built in way for external auth, but it's pretty challenging to set up. I believe that auth system should be configured to be in line...

Btw, there is a built-in username regex used for validation, it only allows alphanumeric, dots and dashes. I think for external auth email is common username, and for AD/LDAP you...

This also could be used for live config update, without restarting the server all the time I did some quick and dirty experiment. Below is a minimal working example. I...

I realized I can just clone API Key tab and convert it into config. I see some config do not take effect right away because those are loaded on system...

Well, it might be too early for that. There is no even official image for cronicle. I guess @jhuckaby is not a big fun of containers, but I think at...