Skip to content

Commit c44e33d

Browse files
authored
Do not pause installation if check_docker fails; update docker image version number (#8)
1 parent 7e089b1 commit c44e33d

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

installer/generate_installer.sh

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -e
44

55
# This is exported in the deployment. Only one multi-arch image may be saved to a single archive.
6-
DOCKER_ZEEK_IMAGE="activecm/zeek:4.2.0"
6+
DOCKER_ZEEK_IMAGE="activecm/zeek:4.2.1"
77
DOCKER_MULTIARCH_IMAGES=("$DOCKER_ZEEK_IMAGE")
88

99
# Store the absolute path of the script's dir and switch to the top dir
@@ -50,22 +50,12 @@ shell-lib/docker/check_docker.sh || {
5050
echo -e "\e[93mWARNING\e[0m: The generator did not detect a supported version of Docker."
5151
echo " A supported version of Docker can be installed by running"
5252
echo " the install_docker.sh script in the scripts directory."
53-
54-
echo
55-
echo -n "Press enter to continue..."
56-
read
57-
echo
5853
}
5954

6055
shell-lib/docker/check_docker-compose.sh || {
6156
echo -e "\e[93mWARNING\e[0m: The generator did not detect a supported version of Docker-Compose."
6257
echo " A supported version of Docker-Compose can be installed by running"
6358
echo " the install_docker.sh script in the scripts directory."
64-
65-
echo
66-
echo -n "Press enter to continue..."
67-
read
68-
echo
6959
}
7060

7161
# If the current user doesn't have docker permissions run with sudo

0 commit comments

Comments
 (0)