Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Install WSL2 on your Windows device: https://learn.microsoft.com/en-us/windows/wsl/install

  2. Download the windows gateway package.

  3. 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>

  4. Open your Linux terminal. The default terminal is Ubuntu.

  5. Make sure your Ubuntu is up to date.

    Code Block
    sudo apt-get update
  6. Execute the docker install script.

    Code Block
    ./docker_install.sh
  7. Once docker is installed you can now run the Gateway using the start script.

    Code Block
    ./start.sh
    
  8. The Gateway should now be accessible from the address localhost:8000 or <device-ip>:8000

...