Accessing Jotty
- Open in browser:
http://<SERVER_IP>:1122 - You will automatically be redirected to:
/auth/setup - Create your first user account.
- The first created account automatically becomes the admin user.
Important Files & Directories
- Install Path:
/root/jotty - Compose File:
/root/jotty/docker-compose.yml - Config Directory:
/root/jotty/config - Data Directory:
/root/jotty/data - Cache Directory:
/root/jotty/cache - Checklists:
/root/jotty/data/checklists - Notes:
/root/jotty/data/notes - Users:
/root/jotty/data/users - Sharing Data:
/root/jotty/data/sharing - Encryption Keys:
/root/jotty/data/encryption
Managing the Stack
Change into the installation directory:
cd /opt/rackula
Check container status:
docker compose ps
View logs:
docker compose logs -f
Restart services:
docker compose restart
Stop the stack:
docker compose down
Start the stack:
docker compose up -d
Notes
- The application listens on port
1122. - The container runs using UID/GID
1000:1000by default. - Back up the entire
/root/jotty/datadirectory regularly.