Fix docker install instruction

The docker CE installation instructions contains some extra characters
which should be removed.
pull/21761/head
Qiming Teng 2020-06-15 11:00:40 +08:00
parent ce768c84b7
commit 7067a55bc2
1 changed files with 2 additions and 2 deletions

View File

@ -97,8 +97,8 @@ add-apt-repository \
# Install Docker CE
apt-get update && apt-get install -y \
containerd.io=1.2.13-2 \
docker-ce=5:19.03.11~3-0~~ubuntu-$(lsb_release -cs) \
docker-ce-cli=5:19.03.11~3-0~~ubuntu-$(lsb_release -cs)
docker-ce=5:19.03.11~3-0~ubuntu-$(lsb_release -cs) \
docker-ce-cli=5:19.03.11~3-0~ubuntu-$(lsb_release -cs)
```
```shell