1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 21:18:13 -05:00

update docker assets

This commit is contained in:
Kyle Spearrin 2017-10-28 20:51:17 -04:00
parent 727dca3855
commit 1e60c1d545
5 changed files with 15 additions and 10 deletions

View File

@ -2,32 +2,37 @@ version: '3'
services: services:
mssql: mssql:
image: bitwarden/mssql:1.12.1 image: bitwarden/mssql:1.13.1
container_name: mssql container_name: mssql
restart: always restart: always
web: web:
image: bitwarden/web:1.18.0 image: bitwarden/web:1.19.0
container_name: web container_name: web
restart: always restart: always
attachments: attachments:
image: bitwarden/attachments:1.12.1 image: bitwarden/attachments:1.13.1
container_name: attachments container_name: attachments
restart: always restart: always
api: api:
image: bitwarden/api:1.12.1 image: bitwarden/api:1.13.1
container_name: api container_name: api
restart: always restart: always
identity: identity:
image: bitwarden/identity:1.12.1 image: bitwarden/identity:1.13.1
container_name: identity container_name: identity
restart: always restart: always
icons:
image: bitwarden/icons:1.13.1
container_name: icons
restart: always
nginx: nginx:
image: bitwarden/nginx:1.12.1 image: bitwarden/nginx:1.13.1
container_name: nginx container_name: nginx
restart: always restart: always
ports: ports:

View File

@ -2,7 +2,7 @@ param (
[string]$outputDir = "../." [string]$outputDir = "../."
) )
[string]$tag = "1.12.1" [string]$tag = "1.13.1"
if(!(Test-Path -Path $outputDir )){ if(!(Test-Path -Path $outputDir )){
New-Item -ItemType directory -Path $outputDir | Out-Null New-Item -ItemType directory -Path $outputDir | Out-Null

View File

@ -7,7 +7,7 @@ then
OUTPUT_DIR=$1 OUTPUT_DIR=$1
fi fi
TAG="1.12.0" TAG="1.13.1"
mkdir -p $OUTPUT_DIR mkdir -p $OUTPUT_DIR

View File

@ -11,7 +11,7 @@ param (
# Setup # Setup
[string]$tag = "1.12.1" [string]$tag = "1.13.1"
$dir = Split-Path -Parent $MyInvocation.MyCommand.Path $dir = Split-Path -Parent $MyInvocation.MyCommand.Path
if($dockerDir -eq "") { if($dockerDir -eq "") {

View File

@ -23,7 +23,7 @@ then
OS="mac" OS="mac"
fi fi
TAG="1.12.0" TAG="1.13.1"
# Functions # Functions