Adding sed statement to disable imklog in rsyslog (#489)
[discourse_docker.git] / launcher
index fd4b4ece8015dba03457687f48502a2677265407..2658c7ea3b918b8bc2c6c3be65fd0ce702184cc1 100755 (executable)
--- a/launcher
+++ b/launcher
@@ -68,7 +68,6 @@ done
 
 if [ -z "$command" -o -z "$config" -a "$command" != "cleanup" ]; then
   usage
-  exit 1
 fi
 
 # Docker doesn't like uppercase characters, spaces or special characters, catch it now before we build everything out and then find out
@@ -91,7 +90,7 @@ git_rec_version='1.8.0'
 config_file=containers/"$config".yml
 cidbootstrap=cids/"$config"_bootstrap.cid
 local_discourse=local_discourse
-image="discourse/base:2.0.20200724-1815"
+image="discourse/base:2.0.20201004-2310"
 docker_path=`which docker.io 2> /dev/null || which docker`
 git_path=`which git`
 
@@ -358,6 +357,7 @@ set_template_info() {
         p e
        end
     end
+    env.each{|k,v| puts "*ERROR." if v.is_a?(Hash)}
     puts env.map{|k,v| "-e\n#{k}=#{v}" }.join("\n")
 RUBY