chore: point at forgejo registry + new image name

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>
This commit is contained in:
amir-climy 2026-05-31 12:41:05 +08:00
parent d974d6ca34
commit 4f2408eeb3
5 changed files with 6 additions and 6 deletions

View file

@ -53,7 +53,7 @@ curl -fsSL https://raw.githubusercontent.com/primatekuntech/triton-install/main/
Pin a specific version: Pin a specific version:
```bash ```bash
curl -fsSL https://raw.githubusercontent.com/primatekuntech/triton-install/main/get.sh | sudo bash -s -- --upgrade --image ghcr.io/primatekuntech/triton-manage-server:1.2.0 curl -fsSL https://raw.githubusercontent.com/primatekuntech/triton-install/main/get.sh | sudo bash -s -- --upgrade --image forgejo.primatekun.tech/primatekuntech/triton-manage-server:1.2.0
``` ```
## Uninstall ## Uninstall

2
get.sh
View file

@ -18,7 +18,7 @@
# #
# Upgrade to a specific image tag: # Upgrade to a specific image tag:
# curl -fsSL https://raw.githubusercontent.com/primatekuntech/triton-install/main/get.sh \ # curl -fsSL https://raw.githubusercontent.com/primatekuntech/triton-install/main/get.sh \
# | sudo bash -s -- --upgrade --image ghcr.io/primatekuntech/triton-manageserver:1.2.0 # | sudo bash -s -- --upgrade --image forgejo.primatekun.tech/primatekuntech/triton-manage-server:1.2.0
# #
# Uninstall (stop containers, keep data): # Uninstall (stop containers, keep data):
# curl -fsSL https://raw.githubusercontent.com/primatekuntech/triton-install/main/get.sh \ # curl -fsSL https://raw.githubusercontent.com/primatekuntech/triton-install/main/get.sh \

View file

@ -28,7 +28,7 @@ services:
retries: 20 retries: 20
manage-server: manage-server:
image: ${TRITON_MANAGE_IMAGE:-ghcr.io/primatekuntech/triton-manageserver:latest} image: ${TRITON_MANAGE_IMAGE:-forgejo.primatekun.tech/primatekuntech/triton-manage-server:latest}
container_name: triton-manageserver container_name: triton-manageserver
hostname: triton-manageserver hostname: triton-manageserver
restart: unless-stopped restart: unless-stopped

View file

@ -55,4 +55,4 @@ TLS_CERT_HOST_DIR=/etc/triton/tls
TRITON_MANAGE_SESSION_TTL=24h TRITON_MANAGE_SESSION_TTL=24h
# ─── Image ─────────────────────────────────────────────────────────────── # ─── Image ───────────────────────────────────────────────────────────────
TRITON_MANAGE_IMAGE=ghcr.io/primatekuntech/triton-manageserver:latest TRITON_MANAGE_IMAGE=forgejo.primatekun.tech/primatekuntech/triton-manage-server:latest

View file

@ -4,10 +4,10 @@
# Takes a pre-upgrade pg_dump. DB schema migrations run on startup. # Takes a pre-upgrade pg_dump. DB schema migrations run on startup.
# #
# Usage: # Usage:
# sudo bash upgrade.sh # latest from ghcr.io # sudo bash upgrade.sh # latest from forgejo.primatekun.tech
# sudo bash upgrade.sh --image TAG # pin a specific image # sudo bash upgrade.sh --image TAG # pin a specific image
# --version Print script version and exit. # --version Print script version and exit.
SCRIPT_VERSION="2026-05-21.4" SCRIPT_VERSION="2026-05-31.1"
set -euo pipefail set -euo pipefail
SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)" SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)"