ipex-llm icon indicating copy to clipboard operation
ipex-llm copied to clipboard

repository does not exist intelanalytics/ipex-llm-inference-cpp-xpu

Open TacitTactics opened this issue 8 months ago • 7 comments

Describe the bug The repo intelanalytics/ipex-llm-inference-cpp-xpu is no longer on dockerhub

How to reproduce Steps to reproduce the error:

  1. run docker pull intelanalytics/ipex-llm-inference-cpp-xpu:latest

Screenshots

Image

Image

TacitTactics avatar Apr 09 '25 02:04 TacitTactics

Same here.

fallenleavesgocrunch avatar Apr 09 '25 07:04 fallenleavesgocrunch

The image is missing from https://hub.docker.com/u/intelanalytics

huichuno avatar Apr 09 '25 08:04 huichuno

FYI: https://github.com/intel/ipex-llm/pull/13057

zouy414 avatar Apr 09 '25 10:04 zouy414

Hello, to anyone who has been using that image in their own compose-files, you can/have to substitute the original image with a build rule like this to make things work as "usual" again:

    # before (simply pull the image)
    image: docker.io/intelanalytics/ipex-llm-inference-cpp-xpu:latest
    container_name: intel-llm
    # other stuff ...
    # now (build the image)
    image: intelanalytics/ipex-llm-inference-cpp-xpu:latest
    build:
      # this is the folder you cloned the repository to
      # ... valid only relative to the path of your compose file!
      context: ./ipex-llm/docker/llm/inference-cpp/
      dockerfile: ./Dockerfile
    container_name: intel-llm
    # other stuff ...

Where you cloned the github repository with:

github clone https://github.com/intel/ipex-llm.git <dir-of-your-docker-compose-file>

bermudahonk avatar Apr 10 '25 05:04 bermudahonk

Thank you this did work. Do we know when the ollama version will be updated for the image? I am not able to pull the new gemma 3. Thank you again

TacitTactics avatar Apr 11 '25 22:04 TacitTactics

I'm not a developer, but according to this 13059 things look promising so far :-)

bermudahonk avatar Apr 12 '25 08:04 bermudahonk

I saw docker image have been recovered. :) and issue resolved.

https://hub.docker.com/layers/intelanalytics/ipex-llm-inference-cpp-xpu/latest/images/sha256-2b854e8636795e512b17fe6858c34c08485e30a71350622e80a0d964cf7624e5

zcwang avatar Apr 29 '25 01:04 zcwang