From 5d3aeba22fec62e988657dc542e7f46a1a3032bc Mon Sep 17 00:00:00 2001 From: Debanjum Singh Solanky Date: Thu, 8 Sep 2022 10:37:39 +0300 Subject: [PATCH] Use --no-gui flag on starting Khoj from docker-compose As the GUI wouldn't work when run from a docker container --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 022463f2..42f2e617 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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