docs: add video for vonage config

This commit is contained in:
Sabiha Khan 2025-11-05 11:44:38 +05:30
parent 5c1fe2c6af
commit 4fe41f104d
7 changed files with 59 additions and 40 deletions

View file

@ -10,7 +10,7 @@ Get the stack up and running using Docker with a single command.
<Note>We collect anonymous usage data to improve the product. You can opt out by setting the `ENABLE_TELEMETRY` to `false` in the below command.</Note>
```bash
curl -o docker-compose.yaml https://raw.githubusercontent.com/dograh-hq/dograh/main/docker-compose.yaml && REGISTRY=ghcr.io/dograh-hq ENABLE_TELEMETRY=true docker compose up
curl -o docker-compose.yaml https://raw.githubusercontent.com/dograh-hq/dograh/main/docker-compose.yaml && REGISTRY=ghcr.io/dograh-hq ENABLE_TELEMETRY=true docker compose up --pull always
```
Please check [Prerequisites](getting-started/prerequisites) for the system requirements and [Troubleshooting](getting-started/troubleshooting) for common issues.

View file

@ -1,9 +1,9 @@
---
title: "Prerequisites"
description: "System requirements and setup needed to run Dograh AI"
description: "System requirements and setup needed to run Dograh AI locally"
---
## System Requirements
## System Requirements (Local Setup)
### Minimum Requirements
- **RAM**: 8 GB (4 GB available for Docker)
@ -78,8 +78,8 @@ To use a specific registry, set the `REGISTRY` environment variable:
```bash
# Using GitHub Container Registry (recommended)
REGISTRY=ghcr.io/dograh-hq docker compose up
REGISTRY=ghcr.io/dograh-hq docker compose up --pull always
# Using Docker Hub
REGISTRY=dograhai docker compose up
REGISTRY=dograhai docker compose up --pull always
```