15 lines
502 B
Bash
Executable File
15 lines
502 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
# shellcheck source=scripts/common.sh
|
|
source "$SCRIPT_DIR/scripts/common.sh"
|
|
|
|
load_env
|
|
install_docker_if_missing
|
|
load_installer_images
|
|
ensure_binfmt_if_needed
|
|
verify_runtime_image
|
|
compose_cmd --profile core --profile sidecar --profile monitor pull --ignore-pull-failures || true
|
|
compose_cmd --profile core --profile sidecar --profile monitor up -d --force-recreate
|
|
"$SCRIPT_DIR/status.sh" --brief || true
|