launcher: launch containers by default with 512MB shmsize
authorMichael Brown <supermathie@gmail.com>
Fri, 6 Apr 2018 20:12:17 +0000 (16:12 -0400)
committerMichael Brown <supermathie@gmail.com>
Fri, 6 Apr 2018 20:12:17 +0000 (16:12 -0400)
launcher

index e7ff177aa507f1ab163552d42f07a476d1c6d04b..97ea53577e132d48c93ea2343c34b18193fcad0e 100755 (executable)
--- a/launcher
+++ b/launcher
@@ -536,7 +536,7 @@ run_start() {
      fi
 
      set -x
-     $docker_path run $links $attach_on_run $restart_policy "${env[@]}" "${labels[@]}" -h "$hostname" \
+     $docker_path run --shm-size=512m $links $attach_on_run $restart_policy "${env[@]}" "${labels[@]}" -h "$hostname" \
         -e DOCKER_HOST_IP="$docker_ip" --name $config -t $ports $volumes $mac_address $docker_args $user_args \
         $run_image $boot_command
 
@@ -581,7 +581,7 @@ run_bootstrap() {
   echo $run_command
 
   unset ERR
-  (exec echo "$input" | $docker_path run $user_args $links "${env[@]}" -e DOCKER_HOST_IP="$docker_ip" --cidfile $cidbootstrap -i -a stdin -a stdout -a stderr $volumes $image \
+  (exec echo "$input" | $docker_path run --shm-size=512m $user_args $links "${env[@]}" -e DOCKER_HOST_IP="$docker_ip" --cidfile $cidbootstrap -i -a stdin -a stdout -a stderr $volumes $image \
     /bin/bash -c "$run_command") || ERR=$?
 
   unset FAILED