Docker based examples of UD-Viz

April 29, 2026 ยท View on GitHub

This container illustrates all the examples offered by the UD-Viz npm package,

Build the docker image with

docker build [--build-arg checkoutName=master] -t vcity/ud-viz Context

Then run the container e.g. with

docker run -p 0.0.0.0:8080:8000/tcp [--detach] --rm -t vcity/ud-viz

and open a web browser on URL http://localhost:8080/

Notes:

  • you can specify the branch or a commit in the build arg checkoutName (default = master)
  • in the above docker run command the optional --detach argument requires the container to run in background (detached mode),
  • the published port (the 8080 in the above -p flag argument of the the docker run command) can be changed but has to match with the port given (within the URL) when browsing

UD-Viz is available on DockerHub vcity/ud-viz.