Skip to content
Chaunte W. Lacewell edited this page May 6, 2024 · 23 revisions

VDMS Server Docker Image

To download the latest docker image and run the VDMS Server:

# On Linux
docker run --net=host -d intellabs/vdms:latest

# On Mac
docker run -p 55555:55555 -d intellabs/vdms:latest

The VDMS server will be listening to connection on its default TCP port (55555).

Environment Variable in Docker Containers

As of v2.8.0, users now have the ability to override the default parameters in config-vdms.json. Users can specify the newer parameters as an environment variable into the docker container using the prefix OVERRIDE_. For example, to override the autodelete_interval_s parameter, you can use the following:

docker run -d --net=host -e OVERRIDE_autodelete_interval_s=60 intellabs/vdms:v2.8.0

Other Images

VDMS Server Version 2.7.0:

docker run --net=host -d intellabs/vdms:v2.7.0
Clone this wiki locally