diff --git a/README.md b/README.md
index 865fc0469424390653c4593fb00bbc25ff15cbbe..799bd5d6ae6eaf205775dfef869b5c2ab6822dc7 100755
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@ Requirements:
     
     Bash, Git and Docker. Runs on Linux, Mac or Windows*.
 
-*Windows not supported in development mode due to lack of support for symbolic links.
+*Windows not fully supported in development mode due to lack of support for symbolic links.
 
 Setup
 
@@ -96,4 +96,16 @@ Note that when you edit the Django ORM model, you need to rerun the migrate the
     $ source /db_conf.sh
     $ cd /opt/webapp_code
     $ python3 manage.py makemigrations
-    $ python3 manage.py migrate  
\ No newline at end of file
+    $ python3 manage.py migrate
+    
+## Known issues
+
+    SINGULARITY_TMPDIR=/...
+    .singularity in user home
+
+
+
+
+
+
+
diff --git a/rosetta/run b/rosetta/run
index 74f2f2d784bbd5819b4dbd5187bdf1a2f89f2d4d..fdca32bd17bf6bd1339e85ae5a7544f47b216fff 100755
--- a/rosetta/run
+++ b/rosetta/run
@@ -9,5 +9,5 @@ fi
 if [[ $# -eq 0 ]] ; then
     docker-compose up -d
 else
-    docker-compose up $@ -d
+    docker-compose up -d $@
 fi
diff --git a/rosetta/status b/rosetta/status
index bf975db309f8a58ee7136e9829719e9420f1bf25..57a72600d0ac9f22b6d71406735f77ea4d44125c 100755
--- a/rosetta/status
+++ b/rosetta/status
@@ -23,7 +23,7 @@ if [[ $# -eq 0 ]] ; then
     for container_name in ${container_names[@]}
     do
         echo ""
-        echo "$container_name"
+        echo "Container \"$container_name\":"
         docker-compose exec $container_name /bin/bash -c "supervisorctl status"
     done
     echo ""