This repository was archived by the owner on Nov 27, 2023. It is now read-only.
File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -26,11 +26,11 @@ curl -L https://raw.githubusercontent.com/docker/compose-cli/main/scripts/instal
26
26
27
27
You can download the Compose CLI from [ latest release] ( https://github.com/docker/compose-cli/releases/latest ) .
28
28
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) :
30
30
31
31
``` console
32
- $ tar xzf docker-linux-amd64.tar.gz
33
- $ chmod +x docker/docker
32
+ $ mv docker-linux-amd64 docker
33
+ $ chmod +x docker
34
34
```
35
35
36
36
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
62
62
default context:
63
63
64
64
``` console
65
- $ ./docker/docker --context default ps
65
+ $ ./docker --context default ps
66
66
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
67
67
$ echo $?
68
68
0
@@ -78,12 +78,12 @@ $ which docker
78
78
/usr/bin/docker
79
79
$ echo $PATH
80
80
/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
82
82
$ which docker
83
83
/usr/local/bin/docker
84
84
$ docker version
85
85
...
86
- Cloud integration 0.1.6
86
+ Cloud integration 1.0.17
87
87
...
88
88
```
89
89
You can’t perform that action at this time.
0 commit comments