From 14a111e0e9423c60a9eb22b8c162505cad3127a4 Mon Sep 17 00:00:00 2001 From: Joongi Kim Date: Thu, 8 Aug 2024 16:18:09 +0900 Subject: [PATCH] fix: The URL of docker compose installation guide in install-dev.sh (#2673) Backported-from: main (24.09) Backported-to: 23.03 Backport-of: 2673 --- scripts/install-dev.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install-dev.sh b/scripts/install-dev.sh index b027659fe7..af481f6042 100755 --- a/scripts/install-dev.sh +++ b/scripts/install-dev.sh @@ -611,12 +611,12 @@ if [ $CODESPACES != "true" ] || [ $CODESPACES_ON_CREATE -eq 1 ]; then # checking docker compose v2 -f flag if $(docker compose -f 2>&1 | grep -q 'unknown shorthand flag'); then show_error "When run as a user, 'docker compose' seems not to be a compatible version (v2)." - show_info "Please check the following link: https://docs.docker.com/compose/install/compose-plugin/#install-the-plugin-manually to install Docker Compose CLI plugin on ${HOME}/.docker/cli-plugins" + show_info "Please check the following link: https://docs.docker.com/compose/install/ to install Docker Compose and its CLI plugin on ${HOME}/.docker/cli-plugins" exit 1 fi if $(sudo docker compose -f 2>&1 | grep -q 'unknown shorthand flag'); then show_error "When run as the root, 'docker compose' seems not to be a compatible version (v2)" - show_info "Please check the following link: https://docs.docker.com/compose/install/compose-plugin/#install-the-plugin-manually to install Docker Compose CLI plugin on /usr/local/lib/docker/cli-plugins" + show_info "Please check the following link: https://docs.docker.com/compose/install/ to install Docker Compose and its CLI plugin on /usr/local/lib/docker/cli-plugins" exit 1 fi if [ "$DISTRO" = "Darwin" ]; then