frankaemika / franka_description

Official models of Franka Robotics GmbH robots
Apache License 2.0
19 stars 16 forks source link

Update README with full instructions #7

Open richardrl opened 2 weeks ago

richardrl commented 2 weeks ago

You will get permissions errors unless you modify create_urdf.sh with your username and user id and gid like so:

docker build -t urdf_creation \
    --build-arg USERNAME=<myuser> \
    --build-arg USER_UID=<myuid> \
    --build-arg USER_GID=<mygid> \
    ./.docker

echo 

docker run -u <myuid> \
    -v $(pwd):/workspaces/src/franka_description \
    -w /workspaces/src/franka_description \
    urdf_creation \
    .docker/create_urdf.entrypoint.sh $*
gomezgu commented 2 weeks ago

Hi richardlr,

Thank you for your feedback. The user uid was hardcoded to be 1001 and that was probably causing the mismatch. We will fix the issue.