Files
falah-mobile/docker-compose.yml
T
root 5483dd291e Initial Falah Mobile rebuild — all 7 blocks complete
- Auth system (login/register/profile)
- Nur AI chat with persona system
- Souq marketplace with FLH economy
- Forum community with Shariah moderation
- Wallet & FLH top-up
- Premium/Pro tier upgrade with Polar.sh
- Halal Monitor with map & bookmarks
- Home dashboard with daily verse & streaks
- Health endpoints

Next.js 16.2.7, Prisma v5 SQLite, JWT auth, Tailwind CSS v4
2026-06-15 09:28:22 +02:00

23 lines
515 B
YAML

version: "3.8"
services:
falah-mobile:
build: .
image: falah-mobile:latest
ports:
- "4011:3000"
environment:
- NODE_ENV=production
- JWT_SECRET=${JWT_SECRET:-flh-dev-jwt-secret-change-in-prod}
- DATABASE_URL=file:./dev.db
volumes:
- falah-mobile-data:/app/data
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000/api/health"]
interval: 30s
timeout: 10s
retries: 3
volumes:
falah-mobile-data: