mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-09 20:18:50 +01:00
🛠️ fix: Correct Unwanted Newlines after Undo in Textarea (#2289)
* docs: edit docker_override note for deploy-compose
* 🛠️ fix: Correct Unwanted Newlines after Undo in Textarea
This commit is contained in:
parent
f146db5c59
commit
7bd03a6e70
3 changed files with 39 additions and 9 deletions
|
|
@ -109,11 +109,13 @@ The npm commands for "deployed" do this for you but they do not account for over
|
|||
"stop:deployed": "docker compose -f ./deploy-compose.yml down",
|
||||
```
|
||||
|
||||
For example, if you use `deploy-compose.yml` as your main Docker Compose configuration and you have an override file named `deploy-compose.override.yml` (you can name the override file whatever you want), you would run Docker Compose commands like so:
|
||||
I would include the default override file in these commands, but doing so would require one to exist for every setup.
|
||||
|
||||
If you use `deploy-compose.yml` as your main Docker Compose configuration and you have an override file named `docker-compose.override.yml` (you can name the override file whatever you want, but you may have this specific file already), you would run Docker Compose commands like so:
|
||||
|
||||
```bash
|
||||
docker compose -f deploy-compose.yml -f deploy-compose.override.yml pull
|
||||
docker compose -f deploy-compose.yml -f deploy-compose.override.yml up
|
||||
docker compose -f deploy-compose.yml -f docker-compose.override.yml pull
|
||||
docker compose -f deploy-compose.yml -f docker-compose.override.yml up
|
||||
```
|
||||
|
||||
## MongoDB Authentication
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue