mirror of
https://github.com/orris-inc/orris.git
synced 2026-05-06 13:33:05 +08:00
Add sort_order field to forward agents enabling custom ordering in the UI. Changes: - Add sort_order column to forward_agents table with migration - Support sort_order in create/update agent APIs using pointer type to allow explicit zero values - Add sort_by and order query parameters for list endpoints - Rename API parameter from sort_order to order for sort direction to avoid confusion with the field name - Fix README markdown syntax for install script
1.1 KiB
1.1 KiB
Orris
Quick Install
curl -fsSL https://raw.githubusercontent.com/orris-inc/orris/main/install.sh | bash
Or specify domain and admin credentials:
curl -fsSL https://raw.githubusercontent.com/orris-inc/orris/main/install.sh | \
DOMAIN=orris.example.com \
ADMIN_EMAIL=admin@example.com \
ADMIN_PASSWORD=your-password \
bash
Detailed Installation
See INSTALL.md for detailed installation instructions.
Update
Update to the latest version:
# From your Orris installation directory
./install.sh update
# Or remotely
curl -fsSL https://raw.githubusercontent.com/orris-inc/orris/main/install.sh | bash -s -- update
This will:
- Pull the latest Docker images
- Run database migrations
- Restart all services
Common Commands
docker compose ps # Check status
docker compose logs -f # View logs
docker compose down # Stop services
docker compose up -d # Start services
./install.sh update # Update to latest version
./install.sh help # Show help