Hi, I want to use this isaac_ros_dev docker as dev container, and push the built image to docker registry.
The problem is:
The building PC(UID is 1000) run run_dev.sh and build the image, so user 'admin' bind to UID 1000(It fixed during docker build, passed by --build-arg" "USER_UID=id -u).
An other PC( UID is 1001) pull docker from docker registry, and just docker run the image. So it caused Permission Denied in mounted directory. Because the 'admin' UID is 1000 and the mounted directory belongs to 1001.
How can I make the built image as a genera image can be pulled by others?
Hi, I want to use this isaac_ros_dev docker as dev container, and push the built image to docker registry. The problem is:
run_dev.sh
and build the image, so user 'admin' bind to UID 1000(It fixed duringdocker build
, passed by--build-arg" "USER_UID=id -u
).An other PC( UID is 1001) pull docker from docker registry, and just docker run the image. So it caused Permission Denied in mounted directory. Because the 'admin' UID is 1000 and the mounted directory belongs to 1001.
How can I make the built image as a genera image can be pulled by others?