cicy-desktop 2.1.110 → 2.1.111
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/build-wsl-package.yml +3 -0
- package/package.json +1 -1
- package/src/backends/homepage-react/assets/{index-DRwt5BEG.js → index-CgqXmbpX.js} +2 -2
- package/src/backends/homepage-react/index.html +1 -1
- package/src/sidecar/wsl-docker.js +26 -5
- package/workers/render/src/App.jsx +7 -2
|
@@ -67,6 +67,9 @@ jobs:
|
|
|
67
67
|
docker images
|
|
68
68
|
pkill dockerd || true
|
|
69
69
|
sleep 4
|
|
70
|
+
# Drop stale daemon runtime files so the FIRST dockerd in WSL2 does
|
|
71
|
+
# not refuse with "pid file found" (引擎没起来 root cause).
|
|
72
|
+
rm -f /var/run/docker.pid /run/docker.pid /var/run/docker.sock /run/docker.sock
|
|
70
73
|
')
|
|
71
74
|
docker logs -f "$cid" || true
|
|
72
75
|
rc=$(docker wait "$cid"); echo "inner exit=$rc"
|