Skip to content

Commit 5799c23

Browse files
authored
Merge pull request #1794 from LizenzFass78851/fix/alpine-issue-2
fix: alpine issue pt. 2
2 parents 52c3510 + 0d241ef commit 5799c23

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/start.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
#!/bin/bash
22

3+
if [ ! -x /bin/sh ]; then
4+
echo "Executable test for /bin/sh failed. Your Docker version is too old to run Alpine 3.14+ and Pi-hole. You must upgrade Docker.";
5+
exit 1;
6+
fi
7+
38
if [ "${PH_VERBOSE:-0}" -gt 0 ]; then
49
set -x
510
fi

0 commit comments

Comments
 (0)