Fix docker install instruction

The docker CE installation instructions contains some extra characters
which should be removed.
This commit is contained in:
Qiming Teng
2020-06-15 11:00:40 +08:00
parent ce768c84b7
commit 7067a55bc2
@@ -97,8 +97,8 @@ add-apt-repository \
# Install Docker CE # Install Docker CE
apt-get update && apt-get install -y \ apt-get update && apt-get install -y \
containerd.io=1.2.13-2 \ containerd.io=1.2.13-2 \
docker-ce=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) docker-ce-cli=5:19.03.11~3-0~ubuntu-$(lsb_release -cs)
``` ```
```shell ```shell