This image provides a containerized environment for running Vistle, a tool for visualizing scientific data. It includes a pre-configured desktop environment and all necessary dependencies.
- Clone this repository from a Linux/Unix environment (WSL on Windows)
- Start docker container with
bin/vnc - Connect to
vnc://localhost:5900with a VNC viewer (password:secret) - Start Vistle by entering
vistleinto the terminal emulator in the container
This repository includes scripts for using the software in the container.
From the root of the checkout of this repository, you will find them in the directory bin.
You will need to execute them from a Linux/Unix environment. On Windows you should get into WSL for doing so.
The scripts will try to auto-detect the container runtime available on your system and use it to start the container.
If the wrong mechanism is auto-detected, you can override it by setting RUNNER.
Especially if you built the image locally using docker, you might want to do so,
in order to make sure that you use the locally built image.
Edit the script bin/_run_from_container.sh to customize the command that is executed inside the container.
Connecting your VNC viewer to the container will bring up a Xfce desktop environment.
Open a terminal emulator and type vistle to start the software.
It is installed to /usr/local, and you can find some example workflows in /usr/local/share/vistle/example.
You can also start it from the Applications menu from the Science category.
The included Firefox browser can be used to access the documentation on vistle.io and is set up to open vistle:// links in the documentation with the installed Vistle software.
The directory data from this directory is visible inside the container as /data.
You can use this to save your changes and exchange data.
The prequisites for using the container are:
- the ability to run Linux containers on your system, e.g., by using Docker, Podman, or Orbstack
- a VNC viewer for connecting to the container, e.g., TigerVNC or the built-in VNC viewer on macOS Please follow the section for your operating system, if your system does not yet provide the required components.
To use the container on Windows, please follow these steps:
- Start Windows Powershell as administrator (by searching for Windows Powershell in the search bar, right-clicking on it and then selecting “Run as administrator”).
- Inside the shell, install WSL by typing the following command:
wsl -–installand then hitting the Enter button. - Install docker with the command:
winget install Docker.DockerDesktop(if the package cannot be found, search for the correct name for your system withwinget search docker). - As we will need a VNC viewer later on, install TigerVNC with:
winget install TigerVNC.TigerVNC - Restart your computer.
- Open the Docker Desktop application and once it started up, go to the settings (the gear wheel symbol at the top). There navigate to “Resources”, then “WSL integration” and finally make sure that “Enable integrations with my default WSL distro” is enabled.
- Start the WSL application, this will open a terminal and prompt you to create an account the first time you use it. Please create one with the username and password of your choice.
- Once you have logged in, navigate to a folder of your choice, e.g., to the home directory with the following command:
cd ~. Note that you can use the commandmkdirto create new folders. - Now clone this repository with the command:
git clone https://github.com/vistle/container.git - This should have create a folder called container in your working directory. Navigate to it with the command:
cd container - Run the following command to start the VNC session:
sudo ./bin/vnc - Now, still on your local machine, start the TigerVNC application. As VNC server, enter the following into the window that just appeared:
localhost:5900 - Cick on “Connect” and enter the password
secret.
You're now all set to use Vistle!
On Debian/Ubuntu do the following, to install the Docker runtime and CLI:
apt install docker.io docker-cliYou also need a VNC viewer for connecting to the container, for example tigervnc-viewer:
apt install tigervnc-viewerAfter starting the container with bin/vnc, you can connect to it by running
vncviewer localhost:5900and providing the password secret when prompted.
We assume that you use Homebrew to install the required components and that this is already set up on your computer.
Docker containers are based on Linux and thus require a virtual machine for execution. While there are many possibilities for doing so, we suggest to use Docker Desktop. You can do so by running
brew install docker-desktopThis should install a Docker runtime and the Docker CLI as docker.
This should be sufficient to run the included scripts.
You can use the VNC client included in macOS to connect to the container:
after spinning up the container with bin/vnc, open the Finder, select "Go" -> "Connect to Server..." and enter vnc://localhost:5900 as the server address.
Then click "Connect" and provide the password secret when prompted.
The docker image built from this repository is based on Debian 13/Trixie, but Ubuntu 26.04 should also mostly work as base.
In order to build the container image, run build/build.sh.
Building with this script always requires docker.
You can change the included features by providing non-empty values for some environment variables:
just edit them at the top of build/build.sh.