- In Windows:
Make sure WSL version is >= 0.67.6
wsl --version
* Uninstall Docker Desktop if installed previously.
- In Ubuntu (or any WSL Distro):
Modify /etc/wsl.conf
and add
[boot]
systemd=true
- In Windows:
Restart WSL
wsl --shutdown
* WSL will restart when opening a new WSL shell
- In Ubuntu:
- If the internal docker network conflicts with other networks like VPN, modify or create
/etc/docker/daemon.json
and set the Bridge IP (BIP) and address pools to any available address
{
"bip": "192.168.2.1/24",
"default-address-pools": [
{
"base": "192.168.4.0/22",
"size": 24
}
]
}
- To avoid the Windows services from hanging/stalling, limit the maximum RAM that can be used by WSL
In Windows:
Modify ~/.wslconfig
, add:
[wsl2]
memory=4GB
Change memory
to reserve around 2-4GB exclusively for Windows (e.g. for 16GB RAM, 12-14GB will be a good setting)
- Error
err: exec: "docker-credential-pass": executable file not found in $PATH
Docker Desktop has created a docker config with credstore
set to the windows binary. Edit ~/.docker/config.json
and remove the credstore
or install one from https://github.com/docker/docker-credential-helpers and use the appropriate credstore name