Documentation Index
Fetch the complete documentation index at: https://docs.dograh.com/llms.txt
Use this file to discover all available pages before exploring further.
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)
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
docker stop $(docker ps -q)
Step 2: Disable restart policy for all containers
This prevents containers from automatically restarting:
docker update --restart=no $(docker ps -a -q)
Step 3: Verify
Check that no containers are running:
Check restart policies (should show βnoβ for each container):
docker inspect -f '{{.Name}} - {{.HostConfig.RestartPolicy.Name}}' $(docker ps -a -q)
Stopping Dograh Services
Stop services or Stop and remove all data (full cleanup)
docker compose down
docker compose down -v