All checks were successful
Container Image / build-and-push (push) Successful in 3m37s
1.5 KiB
1.5 KiB
WilkensXL build versioning
Odysseus keeps the upstream application version separate from the local WilkensXL build version.
APP_VERSIONandUPSTREAM_VERSIONtrack the upstream release.BUILD_VERSIONandFULL_VERSIONidentify this custom image./api/versionreturns both values so Dockge, logs, and the UI can show which build is running.
The default custom build is:
1.0.1-wilkensxl.2
The value can be overridden at runtime with:
ODYSSEUS_BUILD_FLAVORODYSSEUS_BUILD_REVISIONODYSSEUS_BUILD_VERSION
Update workflow
When upstream publishes a new Odysseus version:
- Merge or rebase the upstream changes into the WilkensXL branch.
- Keep the addon loader small and stable.
- Put local behavior changes into addons wherever possible.
- Run the addon, integration, readiness, and version metadata tests.
- Bump
BUILD_REVISIONor setODYSSEUS_BUILD_VERSIONfor the new image.
The loader does not remove all porting work, but it reduces it. Most local behavior should live behind addon manifests, so future upstream updates only need the loader compatibility checked plus any addons that touch changed internals.
Optional image extras
The Docker image skips the optional Real-ESRGAN wheel prebuild by default. That keeps normal CI and Dockge updates from blocking on optional Gallery upscaling dependencies.
To include the prebuilt Real-ESRGAN helper wheels in a custom image, build with:
--build-arg PREBUILD_REALESRGAN_WHEELS=true