728x90
Docker 명령어
Dockerfile에서 자주 쓰이는 명령어 | Engineering Blog by Dale Seo
가상화 재설정
>> bcdedit
>> bcdedit /set hypervisorlaunchtype auto
Docker Port 차단 검색
netsh interface ipv4 show excludedportrange protocol=tcp
Disable hyper-v (which will required a couple of restarts)
dism.exe /Online /Disable-Feature:Microsoft-Hyper-V
When you finish all the required restarts, reserve the port you want so hyper-v doesn't reserve it back
netsh int ipv4 add excludedportrange protocol=tcp startport=50051 numberofports=1
Re-Enable hyper-V (which will require a couple of restart)
dism.exe /Online /Enable-Feature:Microsoft-Hyper-V /All
728x90
728x90