Reputation: 7
What is the windows equivalent of this code?
sudo docker pull ghcr.io/theislab/extended-single-cell-best-practices-container:latest
I have tried running this command already in windows cmd:
docker run ghcr.io/theislab/extended-single-cell-best-practices-container:latest
Upvotes: 0
Views: 210
Reputation: 43
I can not reproduce your problem,
docker run ghcr.io/theislab/extended-single-cell-best-practices-container:latest
works fine for me. Without the error messages debugging will be impossible. I can just give some Assumptions.
docker ps
in the powershell. When the Answer to this is error during connect: This error may indicate that the docker daemon is not running.: Get "http://%2F%2F.%2Fpipe%2Fdocker_engine/v1.24/containers/json": open //./pipe/docker_engine: The system cannot find the file specified.
, your daemon is probably not running -> Start docker desktop. The file to do so should be in a directory like this : C:\Program Files\Docker\Docker\Docker Desktop.exe
For further debugging I would need more information on the error Message. This kind of message would have been better as a comment, but I'm not allowed to write some because of my low reputation, sorry for that
Upvotes: 1