use-env-example-in-docker-compose

This commit is contained in:
Mendon Kissling 2025-09-24 09:23:29 -04:00
parent e74f135f07
commit c259da8524

View file

@ -119,7 +119,13 @@ To install OpenRAG with Docker Compose:
cd openrag cd openrag
``` ```
2. Create a `.env` file in the repository root. 2. Copy the example `.env` file that is included in the repository root.
The example file includes all environment variables with comments to guide you in finding and setting their values.
```bash
cp .env.example .env
```
Alternatively, create a new `.env` file in the repository root.
``` ```
touch .env touch .env
``` ```