7 lines
228 B
Bash
Executable File
7 lines
228 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
echo "Starting SSH test container (building if needed)..."
|
|
docker compose -f "$DIR/compose.yml" up -d --build
|
|
echo "Container started on localhost:2222" |