File tree Expand file tree Collapse file tree 3 files changed +12
-5
lines changed Expand file tree Collapse file tree 3 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 9
9
``` bash
10
10
$ docker-compose --version
11
11
12
- docker-compose version 1.25.5 , build 4667896b
12
+ docker-compose version 1.27.4 , build 40524192
13
13
```
14
14
15
15
Linux 系统请使用以下介绍的方法安装。
@@ -21,7 +21,10 @@ Linux 系统请使用以下介绍的方法安装。
21
21
例如,在 Linux 64 位系统上直接下载对应的二进制包。
22
22
23
23
``` bash
24
- $ sudo curl -L https://github.com/docker/compose/releases/download/1.25.5/docker-compose-` uname -s` -` uname -m` > /usr/local/bin/docker-compose
24
+ $ sudo curl -L https://github.com/docker/compose/releases/download/1.27.4/docker-compose-` uname -s` -` uname -m` > /usr/local/bin/docker-compose
25
+
26
+ # 国内用户可以使用以下方式加快下载
27
+ $ sudo curl -L https://download.fastgit.org/docker/compose/releases/download/1.27.4/docker-compose-` uname -s` -` uname -m` > /usr/local/bin/docker-compose
25
28
26
29
$ sudo chmod +x /usr/local/bin/docker-compose
27
30
```
@@ -42,15 +45,15 @@ $ sudo pip install -U docker-compose
42
45
43
46
``` bash
44
47
Collecting docker-compose
45
- Downloading docker-compose-1.25.5 .tar.gz (149kB): 149kB downloaded
48
+ Downloading docker-compose-1.27.4 .tar.gz (149kB): 149kB downloaded
46
49
...
47
50
Successfully installed docker-compose cached-property requests texttable websocket-client docker-py dockerpty six enum34 backports.ssl-match-hostname ipaddress
48
51
```
49
52
50
53
## bash 补全命令
51
54
52
55
``` bash
53
- $ curl -L https://raw.githubusercontent.com/docker/compose/1.25.5 /contrib/completion/bash/docker-compose > /etc/bash_completion.d/docker-compose
56
+ $ curl -L https://raw.githubusercontent.com/docker/compose/1.27.4 /contrib/completion/bash/docker-compose > /etc/bash_completion.d/docker-compose
54
57
```
55
58
56
59
## 卸载
Original file line number Diff line number Diff line change 12
12
13
13
``` bash
14
14
$ curl -L https://github.com/etcd-io/etcd/releases/download/v3.4.0/etcd-v3.4.0-linux-amd64.tar.gz -o etcd-v3.4.0-linux-amd64.tar.gz
15
+
16
+ # 国内用户可以使用以下方式加快下载
17
+ $ curl -L https://download.fastgit.org/etcd-io/etcd/releases/download/v3.4.0/etcd-v3.4.0-linux-amd64.tar.gz -o etcd-v3.4.0-linux-amd64.tar.gz
18
+
15
19
$ tar xzvf etcd-v3.4.0-linux-amd64.tar.gz
16
20
$ cd etcd-v3.4.0-linux-amd64
17
21
```
Original file line number Diff line number Diff line change 1
1
DOCKER_VERSION=20.10.0
2
- DOCKER_COMPOSE_VERSION=1.25.5
2
+ DOCKER_COMPOSE_VERSION=1.27.4
3
3
DOCKER_MACHINE_VERSION=0.16.1
4
4
ETCD_VERSION=3.4.0
5
5
KUBERNETES_VERSION=1.14.3
You can’t perform that action at this time.
0 commit comments