Versions Compared

Key

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

...

  1. Install Docker Desktop for Windows.

  2. Download and unzip the Gateway package.

  3. Open Powershell and go to your working directory.

  4. Run the Gateway If your system has Windows Subsystem for Linux (WSL) or Git installed you can start the application using the start script.

    Code Block
    ./start.sh

    Otherwise, run the following commands in Windows Powershell from the Gateway package directory.

    Code Block
    docker image load -i .\camera_agent_gateway_<VERSION>-x64.img
    docker-compose -f .\docker-compose.yml up

    For example if the version is 1.0.3:

    Code Block
    docker image load -i .\camera_agent_gateway_1.0.3-x64.img
  5. The Gateway should now be accessible from the address localhost:8000 or <device-ip>:8000

...