From f2ae8bc132f479d0cc66e10783b034b64e314475 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 3 Oct 2017 23:20:09 -0400 Subject: [PATCH] tag setup --- scripts/install.ps1 | 6 ++++-- scripts/install.sh | 7 +++++-- scripts/run.ps1 | 10 ++++++---- scripts/run.sh | 10 ++++++---- 4 files changed, 21 insertions(+), 12 deletions(-) diff --git a/scripts/install.ps1 b/scripts/install.ps1 index 60be6e8f9c..912da0bab4 100644 --- a/scripts/install.ps1 +++ b/scripts/install.ps1 @@ -2,6 +2,8 @@ param ( [string]$outputDir = "../." ) +[string]$tag = "1.12.0" + if(!(Test-Path -Path $outputDir )){ New-Item -ItemType directory -Path $outputDir | Out-Null } @@ -26,8 +28,8 @@ if($domain -ne "localhost") { } } -docker pull bitwarden/setup -docker run -it --rm --name setup -v ${outputDir}:/bitwarden bitwarden/setup ` +docker pull bitwarden/setup:$tag +docker run -it --rm --name setup -v ${outputDir}:/bitwarden bitwarden/setup:$tag ` dotnet Setup.dll -install 1 -domain ${domain} -letsencrypt ${letsEncrypt} echo "Setup complete" diff --git a/scripts/install.sh b/scripts/install.sh index 4b1475c138..2c71c363fc 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -6,6 +6,9 @@ if [ $# -eq 1 ] then OUTPUT_DIR=$1 fi + +TAG="1.12.0" + mkdir -p $OUTPUT_DIR LETS_ENCRYPT="n" @@ -26,8 +29,8 @@ then fi fi -docker pull bitwarden/setup -docker run -it --rm --name setup -v $OUTPUT_DIR:/bitwarden bitwarden/setup \ +docker pull bitwarden/setup:$TAG +docker run -it --rm --name setup -v $OUTPUT_DIR:/bitwarden bitwarden/setup:$TAG \ dotnet Setup.dll -install 1 -domain $DOMAIN -letsencrypt $LETS_ENCRYPT echo "" diff --git a/scripts/run.ps1 b/scripts/run.ps1 index 2073ac6d76..67c23fffc2 100644 --- a/scripts/run.ps1 +++ b/scripts/run.ps1 @@ -10,6 +10,8 @@ param ( # Setup +[string]$tag = "1.12.0" + $dir = Split-Path -Parent $MyInvocation.MyCommand.Path if($dockerDir -eq "") { $dockerDir="${dir}\..\docker" @@ -42,15 +44,15 @@ function Update-Lets-Encrypt { } function Update-Database { - docker pull bitwarden/setup - docker run -it --rm --name setup --network container:mssql -v ${outputDir}:/bitwarden bitwarden/setup ` + docker pull bitwarden/setup:$tag + docker run -it --rm --name setup --network container:mssql -v ${outputDir}:/bitwarden bitwarden/setup:$tag ` dotnet Setup.dll -update 1 -db 1 echo "Database update complete" } function Print-Environment { - docker pull bitwarden/setup - docker run -it --rm --name setup -v ${outputDir}:/bitwarden bitwarden/setup ` + docker pull bitwarden/setup:$tag + docker run -it --rm --name setup -v ${outputDir}:/bitwarden bitwarden/setup:$tag ` dotnet Setup.dll -printenv 1 -env win } diff --git a/scripts/run.sh b/scripts/run.sh index f354a37cb3..4cf113f1e8 100644 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -23,6 +23,8 @@ then OS="mac" fi +TAG="1.12.0" + # Functions function dockerComposeUp() { @@ -51,15 +53,15 @@ function updateLetsEncrypt() { } function updateDatabase() { - docker pull bitwarden/setup - docker run -it --rm --name setup --network container:mssql -v $OUTPUT_DIR:/bitwarden bitwarden/setup \ + docker pull bitwarden/setup:$TAG + docker run -it --rm --name setup --network container:mssql -v $OUTPUT_DIR:/bitwarden bitwarden/setup:$TAG \ dotnet Setup.dll -update 1 -db 1 echo "Database update complete" } function printEnvironment() { - docker pull bitwarden/setup - docker run -it --rm --name setup -v $OUTPUT_DIR:/bitwarden bitwarden/setup \ + docker pull bitwarden/setup:$TAG + docker run -it --rm --name setup -v $OUTPUT_DIR:/bitwarden bitwarden/setup:$TAG \ dotnet Setup.dll -printenv 1 -env $OS }