Upgrade Guide
RegScale is regularly updated. Follow these instructions to keep your instance current.
- RegScale only supports upgrades, not downgrades.
- Downgrading may corrupt the schema. Restore from backup if needed.
- Configuration files and secrets are customer-managed. RegScale cannot recover lost credentials or custom configurations.
Docker Compose
docker-compose down
# Update the image in docker-compose.yml
docker-compose pull
docker-compose up
Kubernetes
# Edit the image tag in your deployment.yaml
kubectl apply -f deployment.yaml
IIS
- Download the zip file from: https://regscale.blob.core.windows.net/deployments/iis_upgrade_latest.zip
- Unzip the file
- Copy the folder contents over the existing wwwroot folder
.NET 9 Port Change (RegScale 6.14.2.1+)
Default internal port changed to 8080
.
Docker
ports:
- "81:8080"
Kubernetes
ASPNETCORE_HTTP_PORTS=80
Updated about 1 month ago