I'm not 100% sure, this might have happened because of something else, but after updating to Docker Desktop 4.80.0 the integration stopped working. After a bit of debugging, it looks like it tries to use install and mv which aren't available on path the way it calls them. I was able to fix the issue by adding
wsl.extraBin = [
{ src = "${pkgs.coreutils}/bin/install"; }
{ src = "${pkgs.coreutils}/bin/mv"; }
];
I'm not 100% sure, this might have happened because of something else, but after updating to Docker Desktop 4.80.0 the integration stopped working. After a bit of debugging, it looks like it tries to use
installandmvwhich aren't available on path the way it calls them. I was able to fix the issue by adding