ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
0

ROS Docker Container not able to be pulled

asked 2019-01-18 11:10:37 -0500

pitosalas gravatar image

updated 2019-01-23 15:16:54 -0500

Based on the instructions here: http://wiki.ros.org/docker/Tutorials/...

I installed docker and then just did this:

$ docker pull ros
Using default tag: latest
Error response from daemon: Get https://registry-1.docker.io/v2/library/ros/manifests/latest: unauthorized: incorrect username or password

Please note I solved this myself. The solution is below:

Solution: log out FROM DOCKER and log back in with just my Docker user name

edit retag flag offensive close merge delete

2 Answers

Sort by ยป oldest newest most voted
0

answered 2019-01-18 11:20:20 -0500

pitosalas gravatar image

updated 2019-01-23 15:17:18 -0500

Diagnosis: I logged into Docker with my email and password, which worked fine, but produces that error.

Solution: log out of DOCKER and log back in with just my Docker user name

edit flag offensive delete link more

Comments

Just to clarify: there is no requirement to log in anywhere to be able to pull the OSRF ROS / ROS2 / Gazebo images.

gvdhoorn gravatar image gvdhoorn  ( 2019-01-19 10:42:29 -0500 )edit
0

answered 2019-01-19 17:11:36 -0500

ChriMo gravatar image

I've seen similar messages, because of wrong usage of docker pull image/version

$docker pull osrf/kinetic Using default tag: latest Error response from daemon: pull access denied for osrf/kinetic, repository does not exist or may require 'docker login'

try this...

ros1:

$docker pull ros:kinetic

$docker run -it ros:kinetic

or latest ros1 version:

$docker pull ros:latest

$docker run -it ros:latest

ros2:

$docker pull ros:crystal

$docker run -it ros:crystal

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2019-01-18 11:10:37 -0500

Seen: 901 times

Last updated: Jan 23 '19