From edcdcb9131ae4502cd8dd767bb4aa1853db1cbfc Mon Sep 17 00:00:00 2001 From: Nicolas Hiillos Date: Fri, 28 Apr 2023 13:09:46 +0300 Subject: [PATCH] Update mount to rw --- Dockerfile | 3 +++ README.md | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 73d5aca..64d3ee6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,6 +27,9 @@ RUN apt-get update && \ apt-get install -yq python3-pil.imagetk && \ apt-get install -yq ros-${ROS_DISTRO}-pilz-industrial-motion-planner && \ apt-get install -yq tmux && \ + apt-get install -yq nano && \ + apt-get install -yq vim && \ + apt-get install -yq less && \ apt-get install -yq python3-pip && \ apt-get install -yq ros-${ROS_DISTRO}-desktop && \ apt-get install -yq ros-${ROS_DISTRO}-rclcpp-components diff --git a/README.md b/README.md index 7c40beb..839a55e 100644 --- a/README.md +++ b/README.md @@ -37,9 +37,9 @@ This will mount the host `drawing-robot-ros2` directory in the container at `src Optionally you can pass a directory to the container with ``` sh -bash .docker/run.bash -v PATH_TO_SVG:/svg:ro +bash .docker/run.bash -v PATH_TO_SVG:/svg:rw ``` -This will mount the given path to /svg in read-only mode in the container. +This will mount the given path to /svg in read-write mode in the container. #### Podman issues