Files
orris/README.md
orris-inc 39a08c503c feat(agent): add sort_order field for custom UI ordering
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
2026-01-05 11:41:53 +08:00

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:

  1. Pull the latest Docker images
  2. Run database migrations
  3. 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

License

MIT License