diff --git a/web/content/docs/userguide/basics/container.md b/web/content/docs/userguide/basics/container.md
index 13921143e39bf398709e0fe53c52525ce2707663..54f11e2037fe3dcb4125733abe1381bc3bd4b444 100644
--- a/web/content/docs/userguide/basics/container.md
+++ b/web/content/docs/userguide/basics/container.md
@@ -16,6 +16,7 @@ weight = 10
 * Linux or [macOS](https://sylabs.io/singularity-desktop-macos/)
   * Note: You can run Singularity on Windows inside a virtual machine using [WSL 2](https://docs.microsoft.com/en-us/windows/wsl/install-win10) or with [Vagrant](https://app.vagrantup.com/sylabs)
 * A running [installation](https://sylabs.io/guides/3.5/user-guide/quick_start.html#quick-installation-steps) of Singularity 3.0 or higher
+  * Available on Eve (UFZ), `envinf1` (UFZ), Juwels (SC Jülich), Taurus (TU Dresden)
 
 ### Get a container image
 
diff --git a/web/content/docs/userguide/basics/envinf1.md b/web/content/docs/userguide/basics/envinf1.md
index 0fcd5d5acd7f71232feceba0de187430cb42dafb..5096e442c2fcf8808bd0a0a1d8eb620318b2bbbe 100644
--- a/web/content/docs/userguide/basics/envinf1.md
+++ b/web/content/docs/userguide/basics/envinf1.md
@@ -3,6 +3,7 @@ date = "2018-02-27T11:00:13+01:00"
 title = "Eve"
 author = "Lars Bilke"
 weight = 2
+draft = true
 
 aliases = [ "/docs/quickstart/basics/envinf1" ]
 
diff --git a/web/content/docs/userguide/post-processing/paraview-on-eve.md b/web/content/docs/userguide/post-processing/paraview-on-eve.md
index 35f100a42f5b78ba9630fadd3df5a6b17632b0f7..90e82d62caa8cc941a9c3c139a8417aa72b56a21 100644
--- a/web/content/docs/userguide/post-processing/paraview-on-eve.md
+++ b/web/content/docs/userguide/post-processing/paraview-on-eve.md
@@ -1,6 +1,6 @@
 +++
 date = "2018-11-14T14:00:13+01`:00"
-title = "ParaView on Eve frontends"
+title = "ParaView on Eve frontends / envinf1"
 author = "Lars Bilke"
 weight = 1
 
@@ -11,18 +11,20 @@ weight = 1
 aliases = ['paraview-on-envinf1']
 +++
 
+## Eve frontends
+
 Connect to a frontend node and start `pvserver` via singularity:
 
 ```bash
 ssh frontend1.eve.ufz.de -L 11111:frontend1.eve.ufz.de:11111
 # OR: ssh frontend2.eve.ufz.de -L 11111:frontend2.eve.ufz.de:11111
 # frontend2 has a NVidia K80 vs a P4000 in frontend1
-singularity exec --nv -B /data:/data /data/ogs/images/pv-v5.6.0-egl.sif /opt/paraview/bin/pvserver
+singularity exec --nv -B /data:/data /data/ogs/images/pv-v5.8.0-egl-py2.sif /opt/paraview/bin/pvserver
 ```
 
 On your local machine:
 
-* [Install ParaView 5.6.0](https://www.paraview.org/download/)
+* [Install ParaView 5.8.0](https://www.paraview.org/download/)
 * Connect to server
   * Add Server
     * Host: `localhost`
@@ -30,3 +32,12 @@ On your local machine:
 * Under `Settings / Render View` set `Remote Render Threshold` to a small value (e.g. 1) to ensure remote rendering
 
 The port tunneling with ssh is required as these ports are blocked from the firewall. If port `11111` is already in use by another user just try a different port, e.g. `11112`: `pvserver -sp=11112`. Do not forget to tunnel this port with SSH too!
+
+## `envinf1`
+
+`envinf1` has a NVidia K20m. Same instructions as for eve but port tunneling is not necessary:
+
+```bash
+ssh 141.65.34.100
+singularity exec --nv /data/shared/container/pv-v5.8.0-egl-py2.sif /opt/paraview/bin/pvserver
+```