From 494ab01cb44a1694c47233b4c64c43691a2a356a Mon Sep 17 00:00:00 2001 From: Peter Dave Hello Date: Mon, 16 Oct 2023 20:21:57 +0800 Subject: [PATCH] docs: fix command in docker_compose_install.md (#1053) --- docs/install/docker_compose_install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/install/docker_compose_install.md b/docs/install/docker_compose_install.md index 520e0bb82e..7bbcf401b3 100644 --- a/docs/install/docker_compose_install.md +++ b/docs/install/docker_compose_install.md @@ -32,7 +32,7 @@ How to set up the user/auth system and Google login. ### Running LibreChat Once you have completed all the setup, you can start the LibreChat application by running the command `docker-compose up` in your terminal. After running this command, you can access the LibreChat application at `http://localhost:3080`. -If you build your own containers out of the git checkout with `docker up -d --build` you should pre-create the mount points for the volumes. This avoids occasional trouble with directory permissions when rebuilding: +If you build your own containers out of the git checkout with `docker-compose up --build` you should pre-create the mount points for the volumes. This avoids occasional trouble with directory permissions when rebuilding: ``` mkdir meili_data images .env.production .env.development data-node ```