Am getting this error when trying to install Kasm WorkSpaces from Docker Hub:
# docker pull kasmweb/workspaces:latest
Error response from daemon: manifest for kasmweb/workspaces:latest not found: manifest unknown: manifest unknown
The error “manifest for kasmweb/workspaces:latest not found: manifest unknown: manifest unknown” during a docker pull
command means Docker can’t find the specified image (kasmweb/workspaces
) with the tag latest
in the container registry (usually Docker Hub).
Possible Causes:
Image doesn’t exist: The image kasmweb/workspaces
might not exist at all, or it might not have a tag called latest
. The image publisher might have deleted it, or the latest
tag might point to a different image.
How to Resolve It:
Verify the image name and tag: Go to Docker Hub (hub.docker.com) and search for kasmweb/workspaces
. Check if the image exists and if it has a tag called latest
. If the latest
tag is missing, try pulling a specific version tag (e.g., kasmweb/workspaces:1.0.0
if you see such a tag listed on Docker Hub). If the image doesn’t exist at all, you’ll need to find the correct image name.
e.g: https://hub.docker.com/r/kasmweb/workspaces/tags
kasmweb/workspaces:1.16.1
# docker pull kasmweb/workspaces:1.16.1