snapshot
This commit is contained in:
@@ -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,10 +21,14 @@ test_docker_socket_proxy() {
|
||||
echo "Testing docker-socket-proxy availability and functionality..."
|
||||
|
||||
# Check if the container exists and is running
|
||||
echo "Looking for container: $DOCKER_SOCKET_PROXY_NAME"
|
||||
if docker ps | grep -q "$DOCKER_SOCKET_PROXY_NAME"; then
|
||||
echo "✓ docker-socket-proxy container is running"
|
||||
else
|
||||
echo "✗ docker-socket-proxy container is NOT running"
|
||||
# Check if another container with similar name is running
|
||||
echo "Checking all containers:"
|
||||
docker ps | grep -i docker
|
||||
return 1
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user