From d17d7ad57090e7b10e476c2afcba7e9d48050c47 Mon Sep 17 00:00:00 2001 From: Blake Harnden <32446120+bharnden@users.noreply.github.com> Date: Sat, 14 Dec 2024 10:07:54 -0800 Subject: [PATCH] docs: adjusted docker install run example to use absolute path --- docs/install_docker.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/install_docker.md b/docs/install_docker.md index b957d7a3..970a6789 100644 --- a/docs/install_docker.md +++ b/docs/install_docker.md @@ -38,7 +38,8 @@ are shown below in the run command. ```shell # start container into the background and run the core-daemon by default -sudo docker run -itd --name core -e DISPLAY -v /tmp/.X11-unix:/tmp/.X11-unix:rw --privileged --init --entrypoint core-daemon core +sudo docker run -itd --name core -e DISPLAY -v /tmp/.X11-unix:/tmp/.X11-unix:rw \ + --privileged --init --entrypoint /opt/core/venv/bin/core-daemon core # enable xhost access to the root user, this will allow you to run the core-gui from the container xhost +local:root # launch core-gui from the running container launched previously