Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions flow/util/docker_shell
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ fi

# Most of these options below has to do with allowing to
# run the OpenROAD GUI from within Docker.
docker run -u $(id -u ${USER}):$(id -g ${USER}) \
docker run --privileged -u $(id -u ${USER}):$(id -g ${USER}) \
-e LIBGL_ALWAYS_SOFTWARE=1 \
-e "QT_X11_NO_MITSHM=1" \
-e XDG_RUNTIME_DIR=/tmp/xdg-run \
Expand All @@ -32,7 +32,7 @@ docker run -u $(id -u ${USER}):$(id -g ${USER}) \
-e YOSYS_EXE=$YOSYS_EXE \
-e OPENROAD_EXE=$OPENROAD_EXE \
-e KLAYOUT_CMD=$KLAYOUT_CMD \
-v $WORKSPACE:/OpenROAD-flow-scripts/flow \
-v $WORKSPACE:/OpenROAD-flow-scripts/flow:Z \
--network host \
$DOCKER_INTERACTIVE \
${OR_IMAGE:-openroad/flow-ubuntu22.04-builder:latest} \
Expand Down