aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorsickcodes <[email protected]>2021-03-17 21:20:31 +0000
committersickcodes <[email protected]>2021-03-17 21:20:31 +0000
commitd4b8a0f2be50c06ab3dffed0bba35da948df4ceb (patch)
tree1809419e262b4bfc571eb6dc5ed293d88775e676 /Dockerfile
parentTypo: Use RAM=max or RAM=half to suit all machines, dynamically. (diff)
downloaddocker-osx-d4b8a0f2be50c06ab3dffed0bba35da948df4ceb.tar.xz
docker-osx-d4b8a0f2be50c06ab3dffed0bba35da948df4ceb.zip
Fix RAM math error for -e RAM=max
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index d6e4370..0ab8338 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -217,7 +217,7 @@ RUN touch Launch.sh \
&& tee -a Launch.sh <<< 'set -eu' \
&& tee -a Launch.sh <<< 'sudo chown $(id -u):$(id -g) /dev/kvm 2>/dev/null || true' \
&& tee -a Launch.sh <<< 'sudo chown -R $(id -u):$(id -g) /dev/snd 2>/dev/null || true' \
- && tee -a Launch.sh <<< '[[ "${RAM}" = max ]] && export RAM="$(("$(head -n1 /proc/meminfo | tr -dc "[:digit:]") / 900000"))"' \
+ && tee -a Launch.sh <<< '[[ "${RAM}" = max ]] && export RAM="$(("$(head -n1 /proc/meminfo | tr -dc "[:digit:]") / 1000000"))"' \
&& tee -a Launch.sh <<< '[[ "${RAM}" = half ]] && export RAM="$(("$(head -n1 /proc/meminfo | tr -dc "[:digit:]") / 2000000"))"' \
&& tee -a Launch.sh <<< 'sudo chown -R $(id -u):$(id -g) /dev/snd 2>/dev/null || true' \
&& tee -a Launch.sh <<< 'exec qemu-system-x86_64 -m ${RAM:-2}000 \' \