We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Second attempt to do MoveIt2 tutorial from #935. Following along with https://moveit.picknik.ai/main/doc/how_to_guides/how_to_setup_docker_containers_in_ubuntu.html
Getting stuck unable to pull down the moveit2_tutorials image.
Trying to run:
DOCKER_IMAGE=rolling-tutorial docker compose run --rm --name moveit2_container gpu
The image should pull down! I can pull other public images down. Is this thing private by accident..?
Running the docker compose command gives:
DOCKER_IMAGE=rolling-tutorial docker compose run --rm --name moveit2_container gpu [+] Running 1/1 ✘ gpu Error denied 0.7s Error response from daemon: denied
If I try to directly pull the image:
sudo docker pull ghcr.io/moveit/moveit2_tutorials:rolling-tutorial Error response from daemon: Head "https://ghcr.io/v2/moveit/moveit2_tutorials/manifests/rolling-tutorial": unauthorized
The text was updated successfully, but these errors were encountered:
This happened to me as well, the fix was to change the docker-compose.yaml file to point to the new location of the image.
docker-compose.yaml
These lines:
image: ghcr.io/moveit/moveit2_tutorials:$DOCKER_IMAGE
needed to change to this:
image: ghcr.io/ros-planning/moveit2_tutorials:$DOCKER_IMAGE
I guess the image was moved from moveit org to ros-planning?
moveit
ros-planning
Sorry, something went wrong.
I created a pull request to fix this bug here
No branches or pull requests
Description
Second attempt to do MoveIt2 tutorial from #935. Following along with https://moveit.picknik.ai/main/doc/how_to_guides/how_to_setup_docker_containers_in_ubuntu.html
Getting stuck unable to pull down the moveit2_tutorials image.
Your environment
Steps to reproduce
Trying to run:
Expected behaviour
The image should pull down! I can pull other public images down. Is this thing private by accident..?
Backtrace or Console output
Running the docker compose command gives:
If I try to directly pull the image:
The text was updated successfully, but these errors were encountered: