rolling snapshot push

This commit is contained in:
2025-10-28 20:07:29 -05:00
parent 65b278e33f
commit b9e7c79c07
4 changed files with 66 additions and 6 deletions

View File

@@ -7,8 +7,7 @@ set -e
# Load environment settings
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
CONFIG_DIR="${SCRIPT_DIR}/config"
ENV_FILE="${CONFIG_DIR}/TSYSDevStack-SupportStack-Demo-Settings"
ENV_FILE="${SCRIPT_DIR}/TSYSDevStack-SupportStack-Demo-Settings"
if [ ! -f "$ENV_FILE" ]; then
echo "Error: Environment settings file not found at $ENV_FILE"
@@ -22,7 +21,7 @@ echo "====================================="
# Test 1: Verify all containers are running
echo "Test 1: Checking if all containers are running..."
containers=(tsysdevstack-docker-socket-proxy tsysdevstack-homepage tsysdevstack-wakaapi)
containers=($DOCKER_SOCKET_PROXY_NAME $HOMEPAGE_NAME $WAKAAPI_NAME)
all_running=true
for container in "${containers[@]}"; do
@@ -67,7 +66,7 @@ echo ""
echo "Test 3: Checking service configurations..."
# Check if Docker socket proxy is running and accessible by other services
if docker exec tsysdevstack-docker-socket-proxy sh -c "nc -z localhost 2375 && echo 'ok'" > /dev/null 2>&1; then
if docker exec $DOCKER_SOCKET_PROXY_NAME sh -c "nc -z localhost 2375 && echo 'ok'" > /dev/null 2>&1; then
echo "✓ Docker socket proxy is running internally"
else
echo "⚠ Docker socket proxy internal connection check skipped (not required to pass)"