osi1880vr / prompt_quill

Apache License 2.0
195 stars 19 forks source link

fix docker-compose error: configs.qdrant_config #4

Closed SubodhDahal closed 5 months ago

SubodhDahal commented 5 months ago

While running the docker-compose up -d on MacOs the following error is thrown:

configs.qdrant_config Additional property content is not allowed

This is because the docker-compose.yaml is using a configs section, which is not a standard Docker Compose feature. Instead of the configs section, we can use the volumes directive in Docker Compose to mount a file from the host into the container. If we have a configuration file on your host machine, we can mount it into the container at the desired location.

The purpose of this pull request is to fix this issue.


Btw, thanks for the cool project. I think it has great potential.

osi1880vr commented 5 months ago

Thanks for your contribution, this is how we will grow it into something much better

osi1880vr commented 5 months ago

I also added your change to the stand alone docker-compose for qdrant =)