Fix lost environment variables (#8527)

pull/8563/head
Kazuki Suda 2018-05-16 15:14:30 +09:00 committed by k8s-ci-robot
parent 58b5cbdae4
commit 3665ac54cf
1 changed files with 2 additions and 2 deletions

View File

@ -106,8 +106,8 @@ or install Docker CE 17.03 from Docker's repositories for Ubuntu or Debian:
apt-get update
apt-get install -y apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
add-apt-repository "deb https://download.docker.com/linux/$(. /etc/os-release; echo "") $(lsb_release -cs) stable"
apt-get update && apt-get install -y docker-ce=$(apt-cache madison docker-ce | grep 17.03 | head -1 | awk '{print }')
add-apt-repository "deb https://download.docker.com/linux/$(. /etc/os-release; echo "$ID") $(lsb_release -cs) stable"
apt-get update && apt-get install -y docker-ce=$(apt-cache madison docker-ce | grep 17.03 | head -1 | awk '{print $3}')
```
{{% /tab %}}
{{% tab name="CentOS, RHEL or Fedora" %}}