huggingface / text-generation-inference

Large Language Model Text Generation Inference
http://hf.co/docs/text-generation-inference
Apache License 2.0
8.48k stars 968 forks source link

how to get the latest version number? #1677

Closed fancyerii closed 3 months ago

fancyerii commented 4 months ago

In the document, I use "docker run ghcr.io/huggingface/text-generation-inference:latest" to run the latest version of tgi. But in a production environment, I need to fix the version number. I can't find any webpage similar to docker hub. So how can I use docker command line to get the version list of huggingface/text-generation-inference?

feifan-sun commented 4 months ago

You can see it here: https://github.com/huggingface/text-generation-inference/pkgs/container/text-generation-inference

spew commented 4 months ago

You can use the github API to get the list of available releases and then assume the associated docker image is available.

fancyerii commented 3 months ago

You can see it here: https://github.com/huggingface/text-generation-inference/pkgs/container/text-generation-inference

thanks.