diff --git a/Dockerfile b/Dockerfile index 8b33c1d..42b5a15 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ #tag 8.0-alpine FROM mcr.microsoft.com/dotnet/aspnet@sha256:646b1c5ff36375f35f6149b0ce19ca095f97b4b882b90652801e9fbe82bcfa8a LABEL maintainer="Ed-Fi Alliance, LLC and Contributors " -ENV VERSION="2.3.1" +ENV VERSION="2.3.2" ENV TZ=${TIME_ZONE} # Alpine image does not contain Globalization Cultures library so we need to install ICU library to get fopr LINQ expression to work diff --git a/Installer/install.ps1 b/Installer/install.ps1 index f611aeb..26e9850 100644 --- a/Installer/install.ps1 +++ b/Installer/install.ps1 @@ -45,14 +45,14 @@ Configure DataImport $p = @{ ToolsPath = "C:/temp/tools" DbConnectionInfo = $dbConnectionInfo - PackageVersion = '2.3.1.0' + PackageVersion = '2.3.2.0' } UserRecoveryToken is optional. This value can be used to recover/ reset the application user credentials $p = @{ ToolsPath = "C:/temp/tools" DbConnectionInfo = $dbConnectionInfo - PackageVersion = '2.3.1.0' + PackageVersion = '2.3.2.0' UserRecoveryToken = "bEnFYNociET2R1Wua3DHzwfU5u" } #> @@ -62,7 +62,7 @@ $packageSource = Split-Path $PSScriptRoot -Parent $p = @{ ToolsPath = "C:/temp/tools" DbConnectionInfo = $dbConnectionInfo - PackageVersion = '2.3.1.0' + PackageVersion = '2.3.2.0' PackageSource = $packageSource } diff --git a/docs/docker-deployment.md b/docs/docker-deployment.md index 268538f..9866ed7 100644 --- a/docs/docker-deployment.md +++ b/docs/docker-deployment.md @@ -4,7 +4,7 @@ The Docker Deployment for Data Import provides deployment scripts to install Dat ## Prerequisites -In addition to the prerequisites mentioned [here](../README.md#prerequisites), following requirements are additionaly needed to run Docker Deployment for Data Import: +In addition to the prerequisites mentioned [here](https://github.com/Ed-Fi-Alliance-OSS/Ed-Fi-DataImport/tree/main?tab=readme-ov-file#prerequisites), following requirements are additionally needed to run Docker Deployment for Data Import: * Access to a Docker environment. The instructions below use [Docker Desktop](https://www.docker.com/products/docker-desktop/) for workstation usage. * An execution shell, such as PowerShell or bash using WSL, Mac OS or Linux.