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

Commit

Permalink
Fixed the INSTALL.md file to take into account artifact packaging cha…
Browse files Browse the repository at this point in the history
…nges

Signed-off-by: Massimo Re Ferre <massimo@it20.info>
  • Loading branch information
mreferre committed Sep 13, 2021
1 parent fb7c442 commit cc00625
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ curl -L https://raw.githubusercontent.com/docker/compose-cli/main/scripts/instal

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

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

```console
$ tar xzf docker-linux-amd64.tar.gz
$ chmod +x docker/docker
$ mv docker-linux-amd64 docker
$ chmod +x docker
```

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

```console
$ ./docker/docker --context default ps
$ ./docker --context default ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
$ echo $?
0
Expand All @@ -78,12 +78,12 @@ $ which docker
/usr/bin/docker
$ echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin
$ sudo mv docker/docker /usr/local/bin/docker
$ sudo mv docker /usr/local/bin/docker
$ which docker
/usr/local/bin/docker
$ docker version
...
Cloud integration 0.1.6
Cloud integration 1.0.17
...
```

Expand Down

0 comments on commit cc00625

Please sign in to comment.