-
Notifications
You must be signed in to change notification settings - Fork 299
Description
I've recently re-deployed locally librechat and I it seems like I can't get pass this issue:
2025-11-05T16:53:54.399Z error: Config file YAML format is invalid: ENOENT: no such file or directory, open '/Users/my.user/repos/librechat_new/LibreChat2/librechat.yaml'
Following the documentation, i've configured .env file to make sure it was reading from the correct location:
CONFIG_PATH="/Users/my.user/repos/librechat_new/LibreChat2/librechat.yaml"
And I have renamed and edited the docker-compose.override.yml file to have:
services: api: volumes: - type: bind source: ./librechat.yaml target: /app/librechat.yaml
I've verified the yaml file and it has the correct structure.
When I run docker-compose exec api ls -la /app it shows the yaml file.
Looking for tips on how to bypass this issue.
running on MacOS 26.1
Thank you!