Accessing Papra
- Open in browser:
http://<SERVER_IP>:1221 - Register a new account.
- The first registered user becomes the administrator.
Important Files & Directories
- Install Path:
/root/papra - Compose File:
/root/papra/docker-compose.yml - Environment File:
/root/papra/.env - Data Directory:
/root/papra/app-data - Database Path:
/root/papra/app-data/db - Documents Path:
/root/papra/app-data/documents
User Registration Settings
Authentication and registration settings can be customized by editing:
nano /root/papra/.env
To disable registration, set AUTH_IS_REGISTRATION_ENABLED=false.
Apply the changes with:
cd /root/papra
docker compose up -d
Managing the Stack
Change into the installation directory:
cd /root/papra
Check status:
docker compose ps
View logs:
docker compose logs -f
Restart the application:
docker compose restart
Stop the stack:
docker compose down
Start the stack:
docker compose up -d