Repo moved to forgejo.primatekun.tech/primatekuntech/triton-install
(public). Swap every raw.githubusercontent.com/primatekuntech/
triton-install/main/* URL inside get.sh and README.md to the
Forgejo raw-content path:
https://forgejo.primatekun.tech/primatekuntech/triton-install/raw/branch/main/...
End users now run the bootstrapper from Forgejo, anonymously.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Mirror the source-of-truth update from primatekuntech/triton@HEAD:
the Manage Server image now lives at
forgejo.primatekun.tech/primatekuntech/triton-manage-server (not the
legacy ghcr.io/primatekuntech/triton-manageserver). Updates the
distribution copy of compose.yaml, env.template, upgrade.sh plus the
example URLs in get.sh and README.md.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Aligns the install directory path with the container image name.
Linux: /opt/triton-manageserver
macOS: ~/.local/share/triton-manageserver
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
The uninstall shortcut was executing the stale on-disk uninstall.sh
without refreshing it first, unlike the upgrade path. This meant fixes
to uninstall.sh were never picked up by existing installations.
Refresh all installer files before exec-ing uninstall.sh.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
curl -fsSL .../get.sh | sudo bash -s -- --uninstall
curl -fsSL .../get.sh | sudo bash -s -- --uninstall --purge-data
Detects --uninstall early, resolves INSTALL_DIR from platform, and
execs the on-disk uninstall.sh (passing --purge-data through).
Fails fast with a clear message if Triton is not installed.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Adds get.sh — a curl-piped installer that:
- Detects Linux vs macOS
- Checks for Podman/Docker + compose runtime
- Installs Podman automatically (apt/dnf/yum/zypper/pacman on Linux, Homebrew on macOS)
- Falls back to pip3 for podman-compose when not in package manager
- Downloads installer files to /opt/triton-manage-server (Linux) or
~/.local/share/triton-manage-server (macOS)
- Delegates to install.sh with all forwarded flags
Usage:
curl -fsSL https://raw.githubusercontent.com/primatekuntech/triton-install/main/get.sh | sudo bash
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>