Skip to content

Commit 8123a32

Browse files
authored
Merge pull request #2996 from JdeRobot/issue-2923
Fixed port error and clean docker-compose,yaml
2 parents 1f63ec7 + 5a02b25 commit 8123a32

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

scripts/develop_academy.sh

+5-3
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ echo "RAM src: $ram_version"
5151
echo "RAM branch: $branch"
5252
echo "RoboticsBackend version: $radi_version"
5353

54-
# Install docker-compose if not installed
55-
if ! command -v docker-compose &> /dev/null; then
56-
sudo apt install docker-compose
54+
# Check docker compose installation
55+
if ! command -v docker compose &> /dev/null; then
56+
echo "Docker Compose V2 is not installed. Please install it."
5757
fi
5858

5959
# Clone the desired RAM fork and branch
@@ -112,3 +112,5 @@ if [ "$nvidia" = "true" ]; then
112112
else
113113
docker compose up
114114
fi
115+
116+
cleanup

0 commit comments

Comments
 (0)