Skip to content
Luis edited this page Feb 22, 2019 · 23 revisions

VDMS Server Docker Image

To download the 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).

VDMS Server + Jupyter Notebook Image

This image contains an instance of VDMS server running, together with the Python client module and a Jupyter Notebook ready to use.

Once the docker instance is running, you can go to your browser and go to localhost:8888 to connect to the notebook. Password: vdmstest

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

# On Mac
docker run -p 8888:8888 -d intellabs/vdms:notebook

# Now you can go to your browser and 
# connect to localhost:8888
# Password: vdmstest

VDMS Demo

This image contains an instance of the VDMS Server, a Jupyter Notebook, and sample populated database, and some sample queries to run, together with the Python client module and a Jupyter Notebook ready to use.

Once the docker instance is running, you can go to your browser and go to localhost:8888 to connect to the notebook. Password: vdmstest

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

# On Mac
docker run -p 8888:8888 -d intellabs/vdms:demo

# Now you can go to your browser and 
# connect to localhost:8888
# Password: vdmstest

Other Images

VDMS Server Version 2.0.0:

docker run --net=host -d intellabs/vdms:2.0.0
Clone this wiki locally