How to use Tolling Vision
This guide will show you how to integrate our service...
This page is designed to help you install our software, which runs in a Docker container. Follow the steps outlined below to get started.
Docker is a platform that allows you to run applications inside containers. Containers are lightweight, portable, and ensure that the application runs consistently regardless of where it’s deployed. We have created a Docker image for our application to simplify the deployment process for you. By using our Docker image, you can quickly set up the runtime environment without worrying about dependency management or configuration issues. To use our application, you will need to install Docker on your system.
Follow the instructions below to install Docker on your system:
Once Docker is installed, you will be able to run our application by pulling and running our Docker image.
To utilize the Docker image, you need to configure the following parameters:
For secure communication within the container (if SSL is not terminated by a load balancer):
Replace YOUR-LICENSE-KEY
with the license key you received from our sales team, EXPOSED-PORT
with the port where you want the container to listen, and ARCH
with either x86-64
or arm64
, depending on your hosting machine’s architecture. After starting the docker container, you can check its status in your browser by navigating to http://ADDRESS-OF-YOUR-HOSTING-MACHINE:EXPOSED-PORT
.
docker run -d \
-e LicenseKey=YOUR-LICENSE-KEY \
-p EXPOSED-PORT:80 \
public.ecr.aws/smartcloud/tollingvision:ARCH
Or if you intend to use SSL/TLS with your own certificate:
docker run -d \
-e LicenseKey=YOUR-LICENSE-KEY \
-e CertChain=/certs/cert-chain.pem \
-e PrivateKey=/certs/private-key.pem \
-e TrustedRootCerts=/certs/trusted-roots.pem \
-e RequireClientCertificate=true \
-v /path/to/ssl/certs:/certs \
-p EXPOSED-PORT:443 \
public.ecr.aws/smartcloud/tollingvision:ARCH
For further information about our Docker Image, please visit the Tolling Vision Docker image page.
For detailed instructions and parameters about the docker run command, see the official documentation.
This guide will show you how to integrate our service...
For a deeper dive into our projects and to see practical examples, visit our GitHub page. Explore various code samples and see our solutions in action!