mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00
win no longer requires mssql volume
This commit is contained in:
parent
4cad4a116e
commit
27fcd9c58f
@ -69,7 +69,7 @@ function Download-Run-File {
|
||||
|
||||
function Download-Docker-Files {
|
||||
Invoke-RestMethod -OutFile $dockerDir\docker-compose.yml -Uri "${githubBaseUrl}/docker/docker-compose.yml"
|
||||
Invoke-RestMethod -OutFile $dockerDir\docker-compose.macwin.yml ` -Uri "${githubBaseUrl}/docker/docker-compose.macwin.yml"
|
||||
Invoke-RestMethod -OutFile $dockerDir\docker-compose.linwin.yml ` -Uri "${githubBaseUrl}/docker/docker-compose.linwin.yml"
|
||||
Invoke-RestMethod -OutFile $dockerDir\global.env -Uri "${githubBaseUrl}/docker/global.env"
|
||||
Invoke-RestMethod -OutFile $dockerDir\mssql.env -Uri "${githubBaseUrl}/docker/mssql.env"
|
||||
}
|
||||
|
@ -35,10 +35,10 @@ then
|
||||
OUTPUT=$2
|
||||
fi
|
||||
|
||||
OS="linux"
|
||||
OS="linwin"
|
||||
if [ "$(uname)" == "Darwin" ]
|
||||
then
|
||||
OS="macwin"
|
||||
OS="mac"
|
||||
fi
|
||||
|
||||
SCRIPTS_DIR="$OUTPUT/scripts"
|
||||
|
@ -18,15 +18,15 @@ if($dockerDir -eq "") {
|
||||
# Functions
|
||||
|
||||
function Docker-Compose-Up {
|
||||
docker-compose -f ${dockerDir}\docker-compose.yml -f ${dockerDir}\docker-compose.macwin.yml up -d
|
||||
docker-compose -f ${dockerDir}\docker-compose.yml -f ${dockerDir}\docker-compose.linwin.yml up -d
|
||||
}
|
||||
|
||||
function Docker-Compose-Down {
|
||||
docker-compose -f ${dockerDir}\docker-compose.yml -f ${dockerDir}\docker-compose.macwin.yml down
|
||||
docker-compose -f ${dockerDir}\docker-compose.yml -f ${dockerDir}\docker-compose.linwin.yml down
|
||||
}
|
||||
|
||||
function Docker-Compose-Pull {
|
||||
docker-compose -f ${dockerDir}\docker-compose.yml -f ${dockerDir}\docker-compose.macwin.yml pull
|
||||
docker-compose -f ${dockerDir}\docker-compose.yml -f ${dockerDir}\docker-compose.linwin.yml pull
|
||||
}
|
||||
|
||||
function Docker-Prune {
|
||||
|
@ -17,10 +17,10 @@ then
|
||||
DOCKER_DIR=$3
|
||||
fi
|
||||
|
||||
OS="linux"
|
||||
OS="linwin"
|
||||
if [ "$(uname)" == "Darwin" ]
|
||||
then
|
||||
OS="macwin"
|
||||
OS="mac"
|
||||
fi
|
||||
|
||||
# Functions
|
||||
|
Loading…
x
Reference in New Issue
Block a user