Skip to content

Docker

Install vScope in a containerized environment with Docker using these simple steps.


To prevent data loss when the container is removed, it’s recommended to use persistent storage for vScope data. By default, vScope stores its model and settings in /data.

  1. Create a Docker Volume Run the following command to create a persistent volume for vScope data:
    Terminal window
    docker volume create vscope-data
  2. Run vScope with Persistent Data Start vScope with the volume mounted to /data for persistent storage and using port 8080 as the external port:
    Terminal window
    docker run -d -p 8080:80 -v vscope-data:/data eu.gcr.io/isl-vscope/vscope:release
  3. Access vScope Open your browser and go to http://localhost:8080 to access the vScope web UI.

This setup ensures that vScope data is retained even if the container is removed or restarted.