8 lines
256 B
Bash
Executable File
8 lines
256 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
|
|
compose_cmd --profile core --profile sidecar --profile monitor logs "$@"
|