Frédéric THOMAS

Results 16 comments of Frédéric THOMAS

Hi, Where are we with this issue, now WSL 2 has been officially released? Without this issue fixed I cannot use Quarkus to send s2i native builds to openshift because...

Sorry, I totally missed that. You could be right, I will have a look and come back to you.

Sorry again for the delay, I never find the time to work again on this until today, my guess is there is a workaround adding "org.granite.math.*" as extraDependencies

... in a SQLConnection ? can you please detailed for use case, thanks.

Yeah, workers have been designed to have 1 entry point and once it has executed its supposed "long CPU consuming task", it terminates itself, I did not change the original...

I tried but it failed to start the nginx service. Weirdly, when using `/tmp/docker.sock` and connecting to Container autok3s-autok3s-1, then running: `curl --unix-socket /tmp/docker.sock http://0.0.0.0/version` It works: ``` json {"Platform":{"Name":"Docker...

If you mean from directly from the CLI, see [my other issue](https://github.com/cnrancher/autok3s/issues/523)

Yes, got it working with: ``` yaml services: autok3s: image: cnrancher/autok3s:v0.6.0 init: true ports: - 80:8080 volumes: - /var/run/docker.sock:/var/run/docker.sock:ro - $HOME/.autok3s/:/home/.autok3s/ environment: - AUTOK3S_CONFIG=/home/.autok3s/ ``` Do you know any other...

All right, a bit better: ``` yaml services: nginx-proxy: image: nginxproxy/nginx-proxy container_name: nginx-proxy ports: - "80:80" volumes: - /var/run/docker.sock:/tmp/docker.sock:ro autok3s: image: cnrancher/autok3s:v0.6.0 init: true ports: - 8080 volumes: - /var/run/docker.sock:/var/run/docker.sock:ro...