From 95cb86f1734432c870a2ca50adeec459155e3787 Mon Sep 17 00:00:00 2001 From: rohanborate6713 <154045997+rohanborate6713@users.noreply.github.com> Date: Mon, 2 Dec 2024 15:47:06 +0530 Subject: [PATCH] Update standalone.md (#20985) updated missing command for the second point where executable permission is required for the standalone binary ## Description ## Related issues or tickets ## Reviews - [ ] Technical review - [ ] Editorial review - [ ] Product review --------- Co-authored-by: Allie Sadler <102604716+aevesdocker@users.noreply.github.com> --- 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 d2908157dcc..f9209eec07f 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 + ``` +3. Test and execute Compose commands using `docker-compose`. > [!TIP] >