...
Install WSL2 on your Windows device: https://learn.microsoft.com/en-us/windows/wsl/install
Download the windows gateway package.
Copy and extract the contents to the Linux home directory.
The directory should be reachable from your file explorer.
Example: <linux-folder>/ubuntu/home/<user>Open your Linux terminal. The default terminal is Ubuntu.
Make sure your Ubuntu is up to date.
Code Block sudo apt-get update
Execute the docker install script.
Code Block ./docker_install.sh
Once docker is installed you can now run the Gateway using the start script.
Code Block ./start.sh
The Gateway should now be accessible from the address localhost:8000 or <device-ip>:8000
...