File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 1
- #! /bin/bash
1
+ #! /usr/ bin/env bash
2
2
3
3
set -e
4
4
@@ -9,12 +9,19 @@ Before you submit any github issue, please do the following check:
9
9
* make sure the docker daemon is running
10
10
* make sure you use docker compose v2: recommend 2.x.x, got $( docker compose version --short 2> /dev/null || echo not install)
11
11
* check your internet connection if timeout happens
12
+ * check for potential port conflicts if you have local services listening on all interfaces (e.g. another redis container listening on *:6379)
12
13
===========================
13
14
EOF
14
15
}
15
16
16
17
trap notes ERR
17
18
19
+ if ! docker info > /dev/null 2>&1 ; then
20
+ echo " Docker daemon or Docker Desktop is not running... please check" 2>&1
21
+ false
22
+ exit 1
23
+ fi
24
+
18
25
DOWNLOAD_URL=' https://github.com/apitable/apitable.github.io/releases/latest/download/docker-compose.tar.gz'
19
26
20
27
mkdir -p apitable
You can’t perform that action at this time.
0 commit comments