diff --git a/docker/.env.example b/docker/.env.example index e67887840..7025cac52 100644 --- a/docker/.env.example +++ b/docker/.env.example @@ -5,7 +5,7 @@ # ============================================================================== # SurfSense version (use "latest", a clean version like "0.0.14", or a specific build like "0.0.14.1") -SURFSENSE_VERSION=0.0.13.9 +SURFSENSE_VERSION=latest # ------------------------------------------------------------------------------ # Core Settings diff --git a/docker/scripts/install.ps1 b/docker/scripts/install.ps1 index 832db7a70..0da25f052 100644 --- a/docker/scripts/install.ps1 +++ b/docker/scripts/install.ps1 @@ -24,7 +24,7 @@ $ErrorActionPreference = 'Stop' # ── Configuration ─────────────────────────────────────────────────────────── -$RepoRaw = "https://raw.githubusercontent.com/MODSetter/SurfSense/dev" +$RepoRaw = "https://raw.githubusercontent.com/MODSetter/SurfSense/main" $InstallDir = ".\surfsense" $OldVolume = "surfsense-data" $DumpFile = ".\surfsense_migration_backup.sql" diff --git a/docker/scripts/install.sh b/docker/scripts/install.sh index 18aecac27..c4a0d5c9f 100644 --- a/docker/scripts/install.sh +++ b/docker/scripts/install.sh @@ -25,7 +25,7 @@ set -euo pipefail main() { -REPO_RAW="https://raw.githubusercontent.com/MODSetter/SurfSense/dev" +REPO_RAW="https://raw.githubusercontent.com/MODSetter/SurfSense/main" INSTALL_DIR="./surfsense" OLD_VOLUME="surfsense-data" DUMP_FILE="./surfsense_migration_backup.sql"