From 979ea90923bc42d49d7a29ad31953cf854deb5d8 Mon Sep 17 00:00:00 2001 From: Lucas Koelman Date: Fri, 16 Jan 2026 16:52:38 +0000 Subject: [PATCH] Fix: mounting user bash configs caused read-only mount --- scripts/run_dev/run_dev.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/scripts/run_dev/run_dev.py b/scripts/run_dev/run_dev.py index 3e8d0c2..631b47c 100755 --- a/scripts/run_dev/run_dev.py +++ b/scripts/run_dev/run_dev.py @@ -214,11 +214,6 @@ def get_docker_args(platform): "-v /tmp/.X11-unix:/tmp/.X11-unix", f"-v {shlex.quote(home_path)}/.Xauthority:/home/admin/.Xauthority:rw", ] - # Add existing bash config files - for config in get_existing_bash_configs(): - docker_args.append( - f"-v {shlex.quote(home_path)}/{config}:/home/admin/{config}:ro" - ) docker_args.extend([ "-e DISPLAY", "-e NVIDIA_VISIBLE_DEVICES=all",