-
Notifications
You must be signed in to change notification settings - Fork 0
Troubleshooting
Bell Eapen edited this page Nov 10, 2025
·
1 revision
Common issues and quick fixes for running the DHTI stack.
-
Port already in use: Check with
lsof -i :<port>and stop conflicting processes. -
Cannot access OpenMRS or LangServe: Ensure containers are running (
docker ps). -
Ollama model not found: Enter the container and pull the model:
docker exec -it dhti-ollama-1 ollama pull <model>
-
Container keeps restarting: Run
docker logs <container>for error details (missing env, bad config, etc.). - Elixir not updating after dev sync: Ensure no dependency changes; otherwise, rebuild the image.
- Conch UI not updating: Clear browser cache or restart the frontend container.
-
docker-compose.yml not found: Run
npx dhti-cli compose add -m <modules>to generate. - Service fails to start: Check for missing images, bad config, or port conflicts.
-
Environment variables: Ensure
.envis present and up to date if required.
- Use
npx dhti-cli helpfor command reference. - Use
docker psanddocker logs <container>for diagnostics. - For persistent issues, try
npx dhti-cli docker -dto stop and remove all containers, then-uto restart.