Skip to content

Commit

Permalink
📘 docs: update docker_compose_install.md (#2447)
Browse files Browse the repository at this point in the history
* Update docker_compose_install.md

* Update docker_compose_install.md
  • Loading branch information
fuegovic authored Apr 18, 2024
1 parent 265abbc commit 26ea990
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions docs/install/installation/docker_compose_install.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,32 @@ Docker Compose installation is recommended for most use cases. It's the easiest,

If you prefer to watch a video, we have video guides for [Windows](./windows_install.md#recommended) and [Ubuntu 22.04 LTS](./linux_install.md#recommended)

## Quick Start - TL;DR
Here's the quick summary to get started with the default configuration:
> Requirement: `Git` and `Docker`
- Clone the repo
```bash
git clone https://github.com/danny-avila/LibreChat.git
```
- navigate to the LibreChat folder
```bash
cd LibreChat
```
- Create a .env from the .env.example
- note: you might need to use `copy` instead of `cp` if you're using Windows 10
```bash
cp .env.example .env
```
- Start LibreChat
```sh
docker compose up -d
```
- Access LibreChat
> visit [http://localhost:3080/](http://localhost:3080/)
- ⚠️ Refer to the remaining sections of this guide as well as our other guides for more advanced configuration options and updates.

## Installation and Configuration

### Preparation
Expand Down

0 comments on commit 26ea990

Please sign in to comment.