AI powered Image editor
1.7K
Refine your images to perfection.
Ranthal is a powerful, AI-powered web-based image editor designed for speed and privacy. It runs entirely in your browser, offering professional-grade tools without uploading your photos to a third-party server (except for specific AI tasks processed securely).
This application is built for production deployment using Docker.
If you encounter Error: EMFILE: too many open files or Watchpack Error, you need to increase your system's file watcher limit.
Run this command to increase the limit temporarily:
sudo sysctl -w fs.inotify.max_user_watches=524288
To make it permanent, add this line to /etc/sysctl.conf:
fs.inotify.max_user_watches=524288
Then run sudo sysctl -p.
The application is containerized and available on Docker Hub.
docker run -p 3000:3000 \
-v $(pwd)/sqlite.db:/app/sqlite.db \
-v $(pwd)/public/uploads:/app/public/uploads \
safiyu/ranthal:latest
Ensure you have the docker-compose.yml file:
version: '3.8'
services:
app:
image: safiyu/ranthal:latest
ports:
- "3000:3000"
environment:
- NODE_ENV=production
- DB_PATH=/app/db/sqlite.db
- AUTH_TRUST_HOST=true
- PUID=1000 # Customize your User ID
- PGID=1000 # Customize your Group ID
# URL Configuration (Available in v0.2.0+)
- AUTH_URL=https://yourdomain.com # Required for correct sign-out redirect
- NEXT_PUBLIC_APP_URL=https://yourdomain.com
volumes:
- ./db:/app/db
- ./public/uploads:/app/public/uploads
restart: unless-stopped
Run the application:
docker-compose up -d
This project is licensed under the MIT License - see the LICENSE file for details.
MIT License
Copyright (c) 2025 Ranthal
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Content type
Image
Digest
sha256:cc651555d…
Size
564.6 MB
Last updated
9 months ago
docker pull safiyu/ranthal