1
Enable WSL2 — PowerShell as Administrator
wsl --install
wsl --set-default-version 2
# Restart when prompted
2
Install Docker Desktop
# docs.docker.com/desktop/install/windows-install/
# Run installer → enable "Use WSL2 based engine"
# Restart → launch Docker Desktop
# Wait for whale icon in taskbar to stop animating
3
Verify Docker — PowerShell
docker --version
docker run hello-world
4
Load and Run — PowerShell
docker load -i juakali.tar
docker run -d `
--name juakali `
--restart unless-stopped `
-p 8080:9000 `
juakali:latest
Note: Use backtick ` for line continuation in PowerShell, not \. To use install.sh, run it inside a WSL2 terminal instead.
5
Open in browser
Start-Process "http://localhost:9000"
Link preview
qet-lab/juakali
Label CAD files using laws of physics to automate assembly planning - qet-lab/juakali GitHub · github.com
Comments