We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a2940c commit 7fcc5a0Copy full SHA for 7fcc5a0
2 files changed
tests/integrationtest.sh
@@ -1,7 +1,7 @@
1
#!/bin/sh
2
set -eux
3
docker version
4
-docker-compose version
+docker compose version
5
6
echo "Downloading test project"
7
mkdir -p downloads
tests/test-generic.sh
@@ -6,7 +6,7 @@ COMPOSEFILE=$1
TIMEOUT=180s
8
echo "test.sh [TEST STARTED] starting docker-compose $COMPOSEFILE"
9
-docker-compose -f $COMPOSEFILE up &
+docker compose -f $COMPOSEFILE up &
10
11
timeout $TIMEOUT bash -c 'until curl -s http://localhost:8080 | grep "<title>Mendix</title>"; do sleep 5; done'
12
@@ -17,5 +17,5 @@ if [ $RETURN_CODE -eq "0" ]; then
17
else
18
echo "test.sh [TEST FAILED] App is not reachable in timeout delay $TIMEOUT for $COMPOSEFILE"
19
fi
20
-docker-compose -f $COMPOSEFILE kill
+docker compose -f $COMPOSEFILE kill
21
exit $RETURN_CODE
0 commit comments