diff --git a/common.sh b/common.sh index 181c4cc..d0c5498 100644 --- a/common.sh +++ b/common.sh @@ -152,12 +152,7 @@ start_containers() { for c in "${RUNNING_CONTAINERS[@]}"; do info "Starting $c" - - if ssh -i "$SSH_KEY" root@"$REMOTE_SERVER" "docker start $c" >/dev/null; then - success "$c started" - else - error "Failed to start $c" - fi + ssh -i "$SSH_KEY" root@"$REMOTE_SERVER" "docker start $c" >/dev/null done }