sudo apt-get update
sudo apt-get install docker.io
; this assumes docker for windows had exposed daemon to this port
export DOCKER_HOST=tcp://localhost:2375
; install docker-compose ; see https://docs.docker.com/compose/install/#install-compose
; fix mount issue
; coz docker for windows expect source without the /mnt
like /c/path_to_anywhere
; while WSL have it as /mnt/c/path_to_anywhere
; create /etc/wsl.conf
[automount]
root = /
options = "metadata"
; don't forget to update mapping in docker-compose yml files to make use of corrected path