File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ notes () {
7
7
======== WARM TIPS ========
8
8
Before you submit any github issue, please do the following check:
9
9
* make sure the docker daemon is running
10
- * make sure you use docker- compose v2: recommend 2.x.x, got $( docker- compose version --short 2> /dev/null || echo not install)
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
12
===========================
13
13
EOF
@@ -25,10 +25,10 @@ cd apitable || exit 1
25
25
curl -fLo docker-compose.tar.gz " ${DOWNLOAD_URL} "
26
26
tar -xvzf docker-compose.tar.gz
27
27
28
- docker- compose down -v --remove-orphans
28
+ docker compose down -v --remove-orphans
29
29
for i in {1..50}; do
30
- if docker- compose pull; then
31
- if docker- compose up -d; then
30
+ if docker compose pull; then
31
+ if docker compose up -d; then
32
32
break
33
33
fi
34
34
fi
You can’t perform that action at this time.
0 commit comments