I can start node container, I got this error:
Dockerfile
# specify the node base image with your desired version node:<version>
FROM node:8
# replace this with your application's default port
EXPOSE 8888
output
○ → docker build -t nodetest .
Sending build context to Docker daemon 3.072kB
Step 1/2 : FROM node:8
Get https://registry-1.docker.io/v2/library/node/manifests/8: unauthorized: incorrect username or password
Any thoughts?
Seems related to https://github.com/docker/hub-feedback/issues/1098
Can you try docker logout?
Same issue for me.
When I trying login I receive next error
Error response from daemon: Get https://registry-1.docker.io/v2/: unauthorized: incorrect username or password
I guess we should be directing people to https://github.com/docker/hub-feedback since, afaict, this isn't really an issue with the image. Was there any recent changes or issues with the Docker Hub and logins?
Closing this out, but it seems like a docker hub issue that is resolved by logging out (docker logout) and then logging in again.
Had a similar problem and docker logout solved it
yes, logging out fix the problem
Most helpful comment
Seems related to https://github.com/docker/hub-feedback/issues/1098
Can you try
docker logout?