Z.J
Z.J
Hi, you can check [this solution](https://github.com/sickcodes/Docker-OSX/issues/440#issuecomment-1034412890). Say you need `8cpu cores`, you can add following parameters to your docker run command ``` -e EXTRA="-smp 8,sockets=1,cores=8,threads=1 // or if you prefer...
I think you should declare how much resources you need when you `create` the container not when `start`. Here is my configuration ``` docker run -i \ --name myMacOSX2 \...
Still getting same error on Monterey but works on Catalina and Big-Sur. OS: ubuntu 22.04.1 LTS CPU: AMD 4800U 
Hi, I got similar crash before. In my case, I used Fragment and added cluster items at `onMapReady()` and called `map.clear()` at `onDestroyView()`. However, there might be some case that...
Not sure if it is possible 1. `docker export` your image as `xxx.tar` 2. `docker load` your `xxx.tar` 3. `docker run` with updated resources allocation
I've been testing this PR, and overall it seems to be working quite well. Great job on this! However, while testing, I encountered an error message: `container not running: No...
Thanks for the detailed explanation and for testing this out! I also tested outside of a container environment, and I did occasionally encounter the same error. However, it didn't seem...
I pulled the latest commit and got the following error. It might be the merge conflicts with 'main' branch? 
I found a dirty workaround to fix the problem. https://github.com/RocketChat/Rocket.Chat/blob/86a21b5784ad676907dd8f90f45a3f7aacc4a97e/apps/meteor/packages/meteor-user-presence/client/client.js#L104 If I comment out `line#104` , `line#105` and `line#106` in the `client.js` , the user status will change to `online`...
I take a workaround to make it work. ``` implementation("com.google.mediapipe:tasks-vision-image-generator:0.10.26") { exclude(group = "com.google.protobuf", module = "protobuf-javalite") } implementation("com.google.protobuf:protobuf-java:4.32.0") ```