Use --no-gui flag on starting Khoj from docker-compose

As the GUI wouldn't work when run from a docker container
This commit is contained in:
Debanjum Singh Solanky 2022-09-08 10:37:39 +03:00
parent e4d40e4d4d
commit 5d3aeba22f

View file

@ -26,4 +26,4 @@ services:
- ./tests/data/embeddings/:/data/embeddings/
- ./tests/data/models/:/data/models/
# Use 0.0.0.0 to explicitly set the host ip for the service on the container. https://pythonspeed.com/articles/docker-connection-refused/
command: --host="0.0.0.0" --port=8000 -c=config/khoj_docker.yml -vv
command: --no-gui --host="0.0.0.0" --port=8000 -c=config/khoj_docker.yml -vv