Hey folks,
I'm trying to move my immich_machine_learning to a hosted instance in oracle cloud.
When main.py starts running it throws the following error:
requests.exceptions.SSLError:
HTTPSConnectionPool(host='huggingface.co', port=443): Max retries exceeded with url: /microsoft/resnet-50/resolve/main/config.json (Caused by SSLError(SSLError(1, '[SSL: TLSV1_ALERT_INTERNAL_ERROR] tlsv1 alert internal error (_ssl.c:1002)')))
Connecting to the docker via /bin/bash and trying to run apt update (just as an example to test https - returns the following):
root@6cc5f1456777:/usr/src/app# apt update
Err:1 https://deb.debian.org/debian bullseye InRelease
Could not handshake: A TLS fatal alert has been received. [IP: 199.232.82.132 443]
The cert store on the image does seem to be populated.
I thought this might be a problem with the image, so I grabbed the nginx image and tried running apt update on it - that one completed without any issues.
My docker compose:
version: "3.8"
services:
immich-machine-learning:
container_name: immich_machine_learning
image: ghcr.io/immich-app/immich-machine-learning:release
volumes:
- model-cache:/cache
env_file:
- .env
restart: always
volumes:
model-cache:
Any help would be appreciated 🙂