mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-07-13 11:22:14 +02:00
chore: Update README and add Mintlify docs
* Update README and add Mintlify docs * Add Twilio documentation * Remove license and fix readme
This commit is contained in:
parent
90f7aac8ad
commit
1f4ff8f865
19 changed files with 267 additions and 60 deletions
50
docs/getting-started/troubleshooting.mdx
Normal file
50
docs/getting-started/troubleshooting.mdx
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
---
|
||||
title: "Troubleshooting"
|
||||
description: "Common issues and solutions for running Dograh AI"
|
||||
---
|
||||
|
||||
# Troubleshooting
|
||||
|
||||
## Freeing Up Ports
|
||||
|
||||
### When a port is already in use:
|
||||
##### Check what's using the port first and then kill the process (may require sudo on Linux)
|
||||
```bash
|
||||
lsof -i :3010
|
||||
|
||||
kill -9 $(lsof -t -i :3010)
|
||||
```
|
||||
|
||||
### When Docker containers are using the ports (with auto-restart enabled):
|
||||
|
||||
**Step 1:** Stop all running containers
|
||||
```bash
|
||||
docker stop $(docker ps -q)
|
||||
```
|
||||
|
||||
**Step 2:** Disable restart policy for all containers
|
||||
This prevents containers from automatically restarting:
|
||||
```bash
|
||||
docker update --restart=no $(docker ps -a -q)
|
||||
```
|
||||
|
||||
**Step 3:** Verify
|
||||
|
||||
Check that no containers are running:
|
||||
```bash
|
||||
docker ps
|
||||
```
|
||||
|
||||
Check restart policies (should show 'no' for each container):
|
||||
```bash
|
||||
docker inspect -f '{{.Name}} - {{.HostConfig.RestartPolicy.Name}}' $(docker ps -a -q)
|
||||
```
|
||||
|
||||
|
||||
## Stopping Dograh Services
|
||||
##### Stop services or Stop and remove all data (full cleanup)
|
||||
```bash
|
||||
docker compose down
|
||||
|
||||
docker compose down -v
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue