Pre-releases
Before going into the 'latest' Docker container or Tdarr package, updates are put into pre-release.
Available containers:
#Tdarr Server
# docker.io accdocker.io/haveagitgat/tdarr_acc:devdocker.io/haveagitgat/tdarr_acc:{version}docker.io/haveagitgat/tdarr_acc:latest # ghcr.io accghcr.io/haveagitgat/tdarr_acc:devghcr.io/haveagitgat/tdarr_acc:{version}ghcr.io/haveagitgat/tdarr_acc:latest # docker.io proddocker.io/haveagitgat/tdarr:{version}docker.io/haveagitgat/tdarr:latest # ghcr.io prodghcr.io/haveagitgat/tdarr:{version}ghcr.io/haveagitgat/tdarr:latest #Tdarr Node
# docker.io accdocker.io/haveagitgat/tdarr_node_acc:devdocker.io/haveagitgat/tdarr_node_acc:{version}docker.io/haveagitgat/tdarr_node_acc:latest # ghcr.io accghcr.io/haveagitgat/tdarr_node_acc:devghcr.io/haveagitgat/tdarr_node_acc:{version}ghcr.io/haveagitgat/tdarr_node_acc:latest # docker.io proddocker.io/haveagitgat/tdarr_node:{version}docker.io/haveagitgat/tdarr_node:latest # ghcr.io prodghcr.io/haveagitgat/tdarr_node:{version}ghcr.io/haveagitgat/tdarr_node:latest
To use a pre-release in Docker, you need to specify the specific version you'd like to use in the Docker run command or Docker compose file for the acceptance containers:
Use latest:ghcr.io/haveagitgat/tdarr_acc:latestghcr.io/haveagitgat/tdarr_node_acc:latest
Use specific version:ghcr.io/haveagitgat/tdarr_acc:2.00.12ghcr.io/haveagitgat/tdarr_node_acc:2.00.12
#
Using a native package pre-releaseTo use a pre-lease when running native Tdarr packages, you need to update the Tdarr_Updater_Config.json file (located in the 'configs' folder next to Tdarr_Updater) with the 'requiredVersion' you'd like to use. Then save and run the Tdarr_Updater. For example,
Before (using 'latest')
{ "platform_arch": "default", "modules": { "Tdarr_Node": { "enabled": true, "requiredVersion": "latest", "currentVersion": "2.00.07" }, "Tdarr_Server": { "enabled": true, "requiredVersion": "latest", "currentVersion": "2.00.07" } }}
After (using '2.00.12')
{ "platform_arch": "default", "modules": { "Tdarr_Node": { "enabled": true, "requiredVersion": "2.00.12", "currentVersion": "2.00.07" }, "Tdarr_Server": { "enabled": true, "requiredVersion": "2.00.12", "currentVersion": "2.00.07" } }}