From e9b080657e2f231a3e01d298db864ef3b2317bf4 Mon Sep 17 00:00:00 2001 From: rohanborate6713 <154045997+rohanborate6713@users.noreply.github.com> Date: Tue, 24 Sep 2024 19:58:56 +0530 Subject: [PATCH 1/2] Update standalone.md updated missing command for the second point where executable permission is required for the standalone binary --- content/manuals/compose/install/standalone.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/content/manuals/compose/install/standalone.md b/content/manuals/compose/install/standalone.md index 9ef55f814914..f87926d3f4a0 100644 --- a/content/manuals/compose/install/standalone.md +++ b/content/manuals/compose/install/standalone.md @@ -19,7 +19,10 @@ On this page you can find instructions on how to install Compose standalone on L $ curl -SL https://github.com/docker/compose/releases/download/{{% param "compose_version" %}}/docker-compose-linux-x86_64 -o /usr/local/bin/docker-compose ``` 2. Apply executable permissions to the standalone binary in the target path for the installation. -3. Test and execute compose commands using `docker-compose`. + ```console + $ chmod +x /usr/local/bin/docker-compose + ``` +4. Test and execute compose commands using `docker-compose`. > [!TIP] > From ce7ca67a2833762f55529147ffacc7101e790f23 Mon Sep 17 00:00:00 2001 From: Allie Sadler <102604716+aevesdocker@users.noreply.github.com> Date: Mon, 2 Dec 2024 10:13:37 +0000 Subject: [PATCH 2/2] Update content/manuals/compose/install/standalone.md --- content/manuals/compose/install/standalone.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/manuals/compose/install/standalone.md b/content/manuals/compose/install/standalone.md index f87926d3f4a0..0db9d42b77d4 100644 --- a/content/manuals/compose/install/standalone.md +++ b/content/manuals/compose/install/standalone.md @@ -22,7 +22,7 @@ On this page you can find instructions on how to install Compose standalone on L ```console $ chmod +x /usr/local/bin/docker-compose ``` -4. Test and execute compose commands using `docker-compose`. +3. Test and execute Compose commands using `docker-compose`. > [!TIP] >