-
Notifications
You must be signed in to change notification settings - Fork 1
/
stop.sh
executable file
·38 lines (33 loc) · 1.08 KB
/
stop.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/bash
# Script should fail fast
set -e
# Function to print colored error messages
print_error() {
printf "\033[1;31mERROR: %s\033[0m\n" "$1" >&2 # Red
}
# Check if wget is installed
if ! command -v wget &>/dev/null; then
print_error "wget command not found. Please install wget to proceed."
exit 1
fi
# Check if docker-compose or docker compose is installed
if command -v docker-compose &>/dev/null; then
DOCKER_COMPOSE_COMMAND="docker-compose"
elif docker compose version &>/dev/null; then
DOCKER_COMPOSE_COMMAND="docker compose"
else
print_error "Neither 'docker-compose' nor 'docker compose' command found. Please install Docker Compose to proceed."
exit 1
fi
# Download docker-compose.yml if it does not exist
if [ ! -f "docker-compose.yml" ]; then
wget https://raw.githubusercontent.com/confluentinc/cp-all-in-one/7.7.0-post/cp-all-in-one-kraft/docker-compose.yml
fi
# Run Docker Compose
$DOCKER_COMPOSE_COMMAND \
-f docker-compose.yml \
-f docker-compose-akhq.yml \
-f docker-compose-elk.yml \
-f docker-compose-flink.yml \
-f docker-compose-kcat.yml \
down