Official documentation for Iqra AI โ The Dynamic AI-First Computing Engine
2.3K
โ
Official documentation container for Iqra AIโ .
Live Documentation ยปโ
Source Codeโ
ยท
Main Platform Repoโ
ยท
Join Communityโ
This image contains the production build of docs.iqra.botโ . It is a Next.js application running in standalone mode, built using Fumadocsโ .
It serves the complete documentation for the Iqra AI ecosystem, covering:
You can spin up the documentation locally on port 5000 with a single command:
docker run -d \
--name iqra-docs \
-p 5000:5000 \
--restart always \
abdofallah/iqraai-docs:latest
Once running, access the docs at http://localhost:5000.
If you are deploying this as part of the larger Iqra AI self-hosted stack, add this service to your docker-compose.yml:
services:
docs:
image: abdofallah/iqraai-docs:latest
container_name: iqra-docs
restart: always
ports:
- "5000:5000"
environment:
- NODE_ENV=production
- PORT=5000
latest: The most recent stable build from the main branch.sha-xxxx: Specific commits for version pinning (useful for production stability).This container is pre-configured for production. However, you can override standard Next.js settings:
| Variable | Default | Description |
|---|---|---|
PORT | 5000 | The internal port the server listens on. |
NODE_ENV | production | Optimization mode. |
HOSTNAME | 0.0.0.0 | Binding address. |
The documentation source code is Open Source. If you find a typo or want to add a guide:
content/docs.Content type
Image
Digest
sha256:00dc72788โฆ
Size
99.9 MB
Last updated
7 months ago
docker pull abdofallah/iqraai-docs