Access
- Open the Ryot URL:
http://<SERVER-IP>:8000 - Create a new user account.
- Sign in.
- Start adding media, workouts, books, games, or other tracked items.
Registration
User registration is currently enabled.
To disable new user registration, change USERS_ALLOW_REGISTRATION=true to USERS_ALLOW_REGISTRATION=false in /root/ryot/.env.
Restart the application to apply the change:
cd /root/ryot
docker compose restart
Important Files & Directories
- Install Path:
/root/ryot - Compose File:
/root/ryot/docker-compose.yml - Environment File:
/root/ryot/.env - Database Volume:
/var/lib/docker/volumes/ryot_postgres_storage
Docker Management
Check containers:
docker ps
View logs:
docker logs -f ryot
Restart services:
cd /root/ryot
docker compose restart
Stop services:
cd /root/ryot
docker compose down
Start services:
cd /root/ryot
docker compose up -d