TensorRT-LLM
TensorRT-LLM copied to clipboard
make -C docker run LOCAL_USER=1 FAILED
I'm using docker in rootless mode.
When i run make -C docker run LOCAL_USER=1
, it failed with the following details:
[+] Building 4.2s (4/4) FINISHED docker:default
=> [internal] load build definition from Dockerfile.user 0.0s
=> => transferring dockerfile: 429B 0.0s
=> [internal] load .dockerignore 0.0s
=> => transferring context: 233B 0.0s
=> ERROR [internal] load metadata for docker.io/tensorrt_llm/devel:latest 4.1s
=> [auth] tensorrt_llm/devel:pull token for registry-1.docker.io 0.0s
------
> [internal] load metadata for docker.io/tensorrt_llm/devel:latest:
------
Dockerfile.user:3
--------------------
1 | ARG BASE_IMAGE_WITH_TAG
2 |
3 | >>> FROM ${BASE_IMAGE_WITH_TAG} as base
4 |
5 | # Alternative user
--------------------
ERROR: failed to solve: tensorrt_llm/devel:latest: pull access denied, repository does not exist or may require authorization: server message: insufficient_scope: authorization failed
make: *** [Makefile:86: devel_run] Error 1
make: Leaving directory '/ssd/home/mhma/accelerate/TensorRT-LLM/docker'
I have logged into docker on linux by using docker login
, but the error still occurs.
Does anyone know the reason?