We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1f63ec7 + 5a02b25 commit 8123a32Copy full SHA for 8123a32
scripts/develop_academy.sh
@@ -51,9 +51,9 @@ echo "RAM src: $ram_version"
51
echo "RAM branch: $branch"
52
echo "RoboticsBackend version: $radi_version"
53
54
-# Install docker-compose if not installed
55
-if ! command -v docker-compose &> /dev/null; then
56
- sudo apt install docker-compose
+# Check docker compose installation
+if ! command -v docker compose &> /dev/null; then
+ echo "Docker Compose V2 is not installed. Please install it."
57
fi
58
59
# Clone the desired RAM fork and branch
@@ -112,3 +112,5 @@ if [ "$nvidia" = "true" ]; then
112
else
113
docker compose up
114
115
+
116
+cleanup
0 commit comments