Install vScope on Docker

Requirements

  • Docker
  • 2 CPU cores
  • HDD 60 GB
  • RAM Server 8 GB

Quick start

  • Execute: docker run -p 80:80 -d docker.vscope.net/vscope
  • Aim your browser at http://localhost to access vScope web UI

Persistent data (recommended)

vScope stores the model and settings under /data by default which is lost if the container is removed.
This path should be mounted externally or in a volume for real usage of vScope.

Create a volume for persistent vScope data
# docker volume create vscope-data

Start vScope with the volume mounted
# docker run -d -p 80:80 -v vscope-data:/data docker.vscope.net/vscope

Leave a Reply