You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I setup step by step from official tutorial. However, I see some error like this
Retrying (Retry(total=239, connect=239, read=240, redirect=240, status=240)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f7d1efbb7a0>: Failed to establish a new connection: [Errno 111] Connection refused')': /auth.login
Retrying (Retry(total=238, connect=238, read=240, redirect=240, status=240)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f7d1ed6e540>: Failed to establish a new connection: [Errno 111] Connection refused')': /auth.login
Retrying (Retry(total=237, connect=237, read=240, redirect=240, status=240)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f7d1edb41d0>: Failed to establish a new connection: [Errno 111] Connection refused')': /auth.login
Retrying (Retry(total=236, connect=236, read=240, redirect=240, status=240)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f7d1edb4380>: Failed to establish a new connection: [Errno 111] Connection refused')': /auth.login
Retrying (Retry(total=235, connect=235, read=240, redirect=240, status=240)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f7d1edb4500>: Failed to establish a new connection: [Errno 111] Connection refused')': /auth.login
Retrying (Retry(total=234, connect=234, read=240, redirect=240, status=240)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f7d1edb4680>: Failed to establish a new connection: [Errno 111] Connection refused')': /auth.login
My configuration
Dockerfile to build image
FROM python:3.12.2-bullseye
ENV LC_ALL=C.UTF-8
# install base packageRUN pip install --no-cache-dir clearml-serving
# get latest execution code from the git repository# RUN cd $HOME && git clone https://github.com/allegroai/clearml-serving.gitCOPY clearml_serving /root/clearml/clearml_serving
RUN pip install --no-cache-dir -r /root/clearml/clearml_serving/serving/requirements.txt
EXPOSE 8083
# environement variable to load Task from CLEARML_SERVING_TASK_ID, CLEARML_SERVING_PORTWORKDIR /root/clearml/
ENTRYPOINT ["clearml_serving/serving/entrypoint.sh"]
Hi
I setup step by step from official tutorial. However, I see some error like this
My configuration
How should fix this?
Thanks!
The text was updated successfully, but these errors were encountered: