Access the Web Interface
- Open your browser and navigate to
http://IP:3000 - The first time you visit, register a new account by hitting “Create account”.
Secure Your Instance
- After logging in, it is strongly recommended to restrict public sign-ups.
- Open:
http://IP:3000/settings/hosting - Enable: Require invite code for signup
- This prevents unauthorized users from creating accounts.
Important Files and Directories
- Application directory:
/root/maybe - Environment file:
/root/maybe/.env - Docker Compose file:
/root/maybe/docker-compose.yml - App storage volume:
/var/lib/docker/volumes/maybe_app-storage - PostgreSQL data volume:
/var/lib/docker/volumes/maybe_postgres-data - Redis data volume:
/var/lib/docker/volumes/maybe_redis-data
Optional AI Features
AI features require OpenAI integration.
The variable OPENAI_ACCESS_TOKEN is available in docker-compose.yml but commented out.
To enable AI features:
- Add your token to
/root/maybe/.env - Uncomment the variable in
docker-compose.yml - Restart services using:
docker compose -f /root/maybe/docker-compose.yml up -d