We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 157ded3 commit 9f7ed8eCopy full SHA for 9f7ed8e
layers/wsl2_amd64/opt/ovmd
@@ -267,7 +267,10 @@ main() {
267
}
268
echo "main(): wait....."
269
while true; do
270
- sleep 1
+ # After enabling the "Resource Saver" mode in Docker Desktop for Windows, all resources under cgroup will be frozen.
271
+ # Since we rely on cgroup and cannot modify the logic of Docker Desktop for Windows, this is the only quick way to resolve the issue.
272
+ find /sys/fs/cgroup/openrc.* -name cgroup.freeze -exec sh -c 'echo 0 > {}' \;
273
+ sleep 0.5
274
done
275
276
0 commit comments