From 5db8649b44774195c7cb25478f5d99fb15927b9e Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 6 Oct 2017 09:57:17 -0400 Subject: [PATCH] version bump on docker --- docker/docker-compose.yml | 12 ++++++------ scripts/install.ps1 | 2 +- scripts/run.ps1 | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index 83b56b572..a2cf2c233 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -2,32 +2,32 @@ version: '3' services: mssql: - image: bitwarden/mssql:1.12.0 + image: bitwarden/mssql:1.12.1 container_name: mssql restart: always web: - image: bitwarden/web:1.12.0 + image: bitwarden/web:1.18.0 container_name: web restart: always attachments: - image: bitwarden/attachments:1.12.0 + image: bitwarden/attachments:1.12.1 container_name: attachments restart: always api: - image: bitwarden/api:1.12.0 + image: bitwarden/api:1.12.1 container_name: api restart: always identity: - image: bitwarden/identity:1.12.0 + image: bitwarden/identity:1.12.1 container_name: identity restart: always nginx: - image: bitwarden/nginx:1.12.0 + image: bitwarden/nginx:1.12.1 container_name: nginx restart: always ports: diff --git a/scripts/install.ps1 b/scripts/install.ps1 index 912da0bab..7fc4c7c5a 100644 --- a/scripts/install.ps1 +++ b/scripts/install.ps1 @@ -2,7 +2,7 @@ param ( [string]$outputDir = "../." ) -[string]$tag = "1.12.0" +[string]$tag = "1.12.1" if(!(Test-Path -Path $outputDir )){ New-Item -ItemType directory -Path $outputDir | Out-Null diff --git a/scripts/run.ps1 b/scripts/run.ps1 index 67c23fffc..1096b89c7 100644 --- a/scripts/run.ps1 +++ b/scripts/run.ps1 @@ -10,7 +10,7 @@ param ( # Setup -[string]$tag = "1.12.0" +[string]$tag = "1.12.1" $dir = Split-Path -Parent $MyInvocation.MyCommand.Path if($dockerDir -eq "") {