connect ECONNREFUSED 172.23.0.6:3003 - ML not starting

It seems like the machine_learning container is not starting. Here is my docker-compose block for that service (it previously worked before updating):

  immich-machine-learning:
    image: ghcr.io/immich-app/immich-machine-learning:release
    volumes:
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
      #- ./model-cache:/cache
      - ./model-cache/yolos-tiny:/usr/src/app/hustvl/yolos-tiny
      - ./model-cache/resnet-50:/usr/src/app/microsoft/resnet-50
      - ./model-cache/clip-ViT-B-32:/usr/src/app/clip-ViT-B-32
    env_file:
      - .env
    environment:
      - NODE_ENV=production
    depends_on:
      - database
    restart: always


Here are the logs from the container:
docker logs immich-immich-machine-learning
INFO:     Started server process [7]
INFO:     Waiting for application startup.


Those logs aren't super helpful. Is there a way to get more verbose logs, and has anyone run into this? Previously I had an issue with the container not being allowed to access the internet and having to bind mount the models within it.
Was this page helpful?