mirror of
https://github.com/bitwarden/server.git
synced 2025-07-01 16:12:49 -05:00
Bwsh surpress warnings (#1084)
* surpessing the missing docker networks message in the bash script when the docker-compose project is already down * surpressing the missing docker network warnings in the powershell script
This commit is contained in:
4
scripts/run.sh
Normal file → Executable file
4
scripts/run.sh
Normal file → Executable file
@ -91,7 +91,9 @@ function dockerComposeUp() {
|
||||
|
||||
function dockerComposeDown() {
|
||||
dockerComposeFiles
|
||||
docker-compose down
|
||||
if [ $(docker-compose ps | wc -l) -gt 2 ]; then
|
||||
docker-compose down
|
||||
fi
|
||||
}
|
||||
|
||||
function dockerComposePull() {
|
||||
|
Reference in New Issue
Block a user