From 3cf017cfaa82718b24416e3824a829c110a9a5d4 Mon Sep 17 00:00:00 2001
From: Stefano Alberto Russo <stefano.russo@gmail.com>
Date: Mon, 24 Aug 2020 16:16:19 +0200
Subject: [PATCH] Minor fixes.

---
 README.md      | 16 ++++++++++++++--
 rosetta/run    |  2 +-
 rosetta/status |  2 +-
 3 files changed, 16 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index 865fc04..799bd5d 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 74f2f2d..fdca32b 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 bf975db..57a7260 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 ""
-- 
GitLab