Different Docker Version in Windows and Rancher Desktop VM #5856
-
Hi, I installed Rancher Desktop (no prior Docker install/Docker Desktop install or anything like that) on Windows 11. I installed it with the dockerd option, I checked the docker version on Powershell, and I got 24.0.6; I entered the Rancher Desktop VM (rdctl shell) and checked the docker version, and I got 23.0.6; for docker-compose, I got the same version 2.21.0 both on Powershell and on Rancher Desktop VM (rdctl shell).
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
There's two parts, the docker client and the docker server. Currently we're using docker client 24.0.6 but docker server 23.0.6 (because the latter is using alpine packages). And As for upgrading:
Again, if things break you'll have to figure out the issue yourself, especially if you change the dockerd version manually. |
Beta Was this translation helpful? Give feedback.
There's two parts, the docker client and the docker server. Currently we're using docker client 24.0.6 but docker server 23.0.6 (because the latter is using alpine packages). And
docker-compose
is a separate thing altogether.As for upgrading:
docker
,docker-compose
) you can try getting binaries from elsewhere and using it instead of the ones s…