You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docker container run -d -P dockeronwindows/ch03-nerd-dinner-web:2e-v2 from the ch03-nerd-dinner-web directory, the issue occurs:
PS C:\DockerStudy\ch03\ch03-nerd-dinner-web> docker container run -d -P dockeronwindows/ch03-nerd-dinner-web:2e-v2
Unable to find image 'dockeronwindows/ch03-nerd-dinner-web:2e-v2' locally
C:\Program Files\Docker\docker.exe: Error response from daemon: manifest for dockeronwindows/ch03-nerd-dinner-web:2e-v2 not found: manifest unknown: manifest unknown.
See 'C:\Program Files\Docker\docker.exe run --help'._
The text was updated successfully, but these errors were encountered:
This is a typo. The container with the tag :2e-v2 does not exist. It is tagged :v2.
So, the following will work :
docker container run -d -P dockeronwindows/ch03-nerd-dinner-web:v2
Agreed that Docker error messages are very hard to understand - it is basically saying container is not found but in its own developer lingo.
When trying to run:
docker container run -d -P dockeronwindows/ch03-nerd-dinner-web:2e-v2 from the ch03-nerd-dinner-web directory, the issue occurs:
PS C:\DockerStudy\ch03\ch03-nerd-dinner-web> docker container run -d -P dockeronwindows/ch03-nerd-dinner-web:2e-v2
Unable to find image 'dockeronwindows/ch03-nerd-dinner-web:2e-v2' locally
C:\Program Files\Docker\docker.exe: Error response from daemon: manifest for dockeronwindows/ch03-nerd-dinner-web:2e-v2 not found: manifest unknown: manifest unknown.
See 'C:\Program Files\Docker\docker.exe run --help'._
The text was updated successfully, but these errors were encountered: