Skip to content
This repository was archived by the owner on Nov 27, 2023. It is now read-only.

Commit cc00625

Browse files
committed
Fixed the INSTALL.md file to take into account artifact packaging changes
Signed-off-by: Massimo Re Ferre <[email protected]>
1 parent fb7c442 commit cc00625

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

INSTALL.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ curl -L https://raw.githubusercontent.com/docker/compose-cli/main/scripts/instal
2626

2727
You can download the Compose CLI from [latest release](https://github.com/docker/compose-cli/releases/latest).
2828

29-
You will then need to extract it and make it executable:
29+
You will then need to rename it and make it executable (the commands below assumes you downloaded the `amd64` version of the binary):
3030

3131
```console
32-
$ tar xzf docker-linux-amd64.tar.gz
33-
$ chmod +x docker/docker
32+
$ mv docker-linux-amd64 docker
33+
$ chmod +x docker
3434
```
3535

3636
To enable using the local Docker Engine and to use existing Docker contexts, you
@@ -62,7 +62,7 @@ You can verify that this is working by checking that the new CLI works with the
6262
default context:
6363

6464
```console
65-
$ ./docker/docker --context default ps
65+
$ ./docker --context default ps
6666
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
6767
$ echo $?
6868
0
@@ -78,12 +78,12 @@ $ which docker
7878
/usr/bin/docker
7979
$ echo $PATH
8080
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin
81-
$ sudo mv docker/docker /usr/local/bin/docker
81+
$ sudo mv docker /usr/local/bin/docker
8282
$ which docker
8383
/usr/local/bin/docker
8484
$ docker version
8585
...
86-
Cloud integration 0.1.6
86+
Cloud integration 1.0.17
8787
...
8888
```
8989

0 commit comments

Comments
 (0)