# powershell
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
wsl --set-default-version 2
# powershell
docker pull hello-world
docker run -it --rm --name hello hello-world:latest
# gitbash
winpty docker pull hello-world
winpty docker run -it --rm --name hello hello-world:latest
docker network ls
docker network prune
docker network rm msc_docker_br_00 msc_docker_br_01
docker run -itd --network=msc_docker_br_00 nexus
docker network connect --alias db --alias mysql msc_docker_br_00 mysql
docker network create --subnet 10.20.13.0/28 --ip-range 172.20.240.0/20 multi-host-network