collabora / WhisperFusion

WhisperFusion builds upon the capabilities of WhisperLive and WhisperSpeech to provide a seamless conversations with an AI.
1.45k stars 101 forks source link

Docker: unauthorized #12

Closed 0x8b closed 4 months ago

0x8b commented 5 months ago

After running sudo docker run --gpus all --shm-size 64G -p 6006:6006 -p 8888:8888 -it ghcr.io/collabora/whisperfusion:latest I got:

Unable to find image 'ghcr.io/collabora/whisperfusion:latest' locally
docker: Error response from daemon: Head "https://ghcr.io/v2/collabora/whisperfusion/manifests/latest": unauthorized.
See 'docker run --help'.
thunder95 commented 5 months ago

same problem

zoq commented 5 months ago

Thanks for opening the issue, fixed, you should be able to pull the image now.

smcalilly commented 5 months ago

I get a denied error after trying the command in the readme:

docker run --gpus all --shm-size 64G -p 6006:6006 -p 8888:8888 -it ghcr.io/collabora/whisperfusion:latest
Unable to find image 'ghcr.io/collabora/whisperfusion:latest' locally
docker: Error response from daemon: Head "https://ghcr.io/v2/collabora/whisperfusion/manifests/latest": denied: denied.
See 'docker run --help'.
zoq commented 5 months ago

I just did a fresh docker pull ghcr.io/collabora/whisperfusion:latest and it download the container on my end. And I can also see, downloads on the container itself. Can you check with the docker pull command again?

smcalilly commented 5 months ago

@zoq same problem:

docker pull ghcr.io/collabora/whisperfusion:latest
Error response from daemon: Head "https://ghcr.io/v2/collabora/whisperfusion/manifests/latest": denied: denied
makaveli10 commented 5 months ago

@smcalilly could you try after logging out of ghcr.io?

docker logout ghcr.io
docker pull ghcr.io/collabora/whisperfusion:latest

I suspect your PAT has expired but since this image is public you should be able to pull without any authentication.

smcalilly commented 5 months ago

@makaveli10 yep that was it. Thanks for the tip!

makaveli10 commented 5 months ago

@0x8b @thunder95 Did you guys manage to pull the image?