You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add version tagging for docker releases, so users can choose to pull the latest minor version within a major version (e.g., 2.17). The Paperless-ngx project does this as seen here: Paperless-ngx Version Tags
Why would this be helpful?
Allows for more flexible version management and easier updates.
Ah, thanks for clarifying. I understood you backwards.
blairun
changed the title
[Enhancement]: Add Docker Version Tagging for Minor Version Updates
[Enhancement]: Add Docker Version Tagging for Major Version Updates
Nov 22, 2024
Type of Enhancement
Server Backend
Describe the Feature/Enhancement
Add version tagging for docker releases, so users can choose to pull the latest minor version within a major version (e.g., 2.17). The Paperless-ngx project does this as seen here: Paperless-ngx Version Tags
Why would this be helpful?
Allows for more flexible version management and easier updates.
Future Implementation (Screenshot)
Example of Dockerfile or versioning script
VERSION=2.17.2
TAGS=2.17.2 2.17
Updated build script to include both tags
docker build -t myproject:$VERSION -t myproject:$TAGS .
Example of changes in documentation
To pull a specific minor version, use the tag format
2.17.2
.To pull the latest minor version within a major version, use the tag format
2.17
.Audiobookshelf Server Version
2.17.2
Current Implementation (Screenshot)
No response
The text was updated successfully, but these errors were encountered: