Download the correct version of the Uplink Gateway package from here.
Windows Installation
Install Docker Desktop for Windows.
Download and unzip the Gateway package.
Open Powershell and go to your working directory.
If your system has Windows Subsystem for Linux (WSL) or Git installed you can start the application using the start script.
./start.sh
Otherwise, run the following commands in Windows Powershell from the Gateway package directory.
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:
docker image load -i .\camera_agent_gateway_1.0.3-x64.img
The Gateway should now be accessible from the address localhost:8000 or <device-ip>:8000
You should see the container running in your Docker Desktop
Disable Windows automatic proxy detection
Linux Installation
Download and unzip the Gateway package.
Install Docker Engine and Docker Compose. It can also be done with the script from the package:
./docker_install.sh
Run the Gateway using the start script.
./start.sh
The Gateway should now be accessible from the address localhost:8000 or <device-ip>:8000
Adding Gateway to the Cloud
Navigate to 127.0.0.1:8000 or <device-ip>:8000, login with username: admin, password: admin, and copy the device UUID.
Navigate to the Gateways tab in the Web Client and add the gateway using the UUID.
Adding Cameras
Navigate to the Gateway tab in Cloud One and select the gateway you would like to add a camera to.
Select the ‘Add Camera To Gateway’ button and fill out the camera information form.
Camera will now have been added to the gateway and cloud one and the camera can be viewed in Gateway’s camera page as well as the Cameras tab.
How to Stop Gateway
Execute the stop script.
./stop.sh
How to Update Gateway
Ensure that the old version of Gateway is running.
Navigate to the extracted folder of the new version of the Gateway.
Execute the script
update.sh
by providing the old Gateway directory and new Gateway directory../update.sh -orig <path_to_old_version_directory> -dest <path_to_new_version_directory>