From ff05f401ec26a9c7ca247a43800d1e04a28ab34f Mon Sep 17 00:00:00 2001
From: Lars Bilke <lars.bilke@ufz.de>
Date: Mon, 14 Sep 2020 22:21:52 +0200
Subject: [PATCH] [web] Container and Windows notes.

---
 web/content/docs/devguide/advanced/docker.md    | 17 +++++++++--------
 .../docs/devguide/advanced/singularity.md       |  2 +-
 2 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/web/content/docs/devguide/advanced/docker.md b/web/content/docs/devguide/advanced/docker.md
index e395f1512ff..06a840b1771 100644
--- a/web/content/docs/devguide/advanced/docker.md
+++ b/web/content/docs/devguide/advanced/docker.md
@@ -15,7 +15,7 @@ weight = 1035
 >
 > <cite>[www.docker.com/whatisdocker](https://www.docker.com/whatisdocker)</cite>
 
-See the [docs](https://docs.docker.com) for installation instructions.
+See the [docs](https://docs.docker.com) for installation instructions (if you are on Windows we highly recommend the [Docker Desktop WSL 2 backend](https://docs.docker.com/docker-for-windows/wsl/)).
 
 ## Images
 
@@ -24,7 +24,7 @@ Docker images can be created by [Dockerfiles](https://docs.docker.com/reference/
 To build an image by yourself create a Dockerfile:
 
 ```bash
-FROM ubuntu:17.10
+FROM ubuntu:20.04
 
 RUN ...
 ```
@@ -32,10 +32,9 @@ RUN ...
 Run the `build` command:
 
 ```bash
-docker build --rm -t repo/image_name path/to/directory
+docker build -t repo/image_name path/to/directory
 ```
 
-- `--rm` Cleans up after exiting the container
 - `-t` specifies a name for the image, can be arbitrary chosen (but should match the corresponding image on Docker Hub if there is one)
 - The path should specify the directory where the Dockerfile is located
 
@@ -46,19 +45,21 @@ Now you can see your build image with `$ docker images`.
 To run commands inside a container:
 
 ```bash
-docker run --rm -t image_name command_to_run
+docker run --rm image_name command_to_run
 ```
 
-To run an interactive shell add the `-i`-switch:
+- `--rm` Cleans up after exiting the container
+
+To run an interactive shell add the `-it`-switch:
 
 ```bash
-docker run --rm -i -t image_name
+docker run --rm -it image_name
 ```
 
 It is useful to mount folders from the host operating system in the Docker container, e.g. to edit source code on your host with your favorite editor:
 
 ```bash
-docker run --rm -i -t -v /host/directory:/container/directory image_name
+docker run --rm -it -v /host/directory:/container/directory image_name
 ```
 
 ## Prebuilt OGS-6 Docker images
diff --git a/web/content/docs/devguide/advanced/singularity.md b/web/content/docs/devguide/advanced/singularity.md
index 388191c0553..4591a9bf8cd 100644
--- a/web/content/docs/devguide/advanced/singularity.md
+++ b/web/content/docs/devguide/advanced/singularity.md
@@ -23,7 +23,7 @@ Singularity per default mounts your home directory and also passes your current
 ### Prerequisites
 
 - Linux and [Mac](https://sylabs.io/singularity-desktop-macos/) only!
-  - Note: You can run Singularity on Windows inside a virtual machine using [WSL 2](https://docs.microsoft.com/en-us/windows/wsl/install-win10)
+  - Note: You can run Singularity **on Windows** inside a lightweight virtual machine using [WSL 2](https://docs.microsoft.com/en-us/windows/wsl/install-win10). Under Ubuntu use Homebrew package `singularity`, under CentOS install via [EPEL](https://sylabs.io/guides/3.0/user-guide/installation.html#install-the-centos-rhel-package-using-yum).
 - [Install Git]({{< ref "prerequisites" >}}/#step-install-git)
 - [Install Singularity](https://sylabs.io/guides/3.5/user-guide/quick_start.html#quick-installation-steps)
 
-- 
GitLab