15 lines
536 B
Bash
15 lines
536 B
Bash
![]() |
#!/bin/bash
|
||
|
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 "$ID") \
|
||
|
$(lsb_release -cs) \
|
||
|
stable" \
|
||
|
&& apt-get update \
|
||
|
&& apt-get install -y docker-ce=$(apt-cache madison docker-ce | grep 18.06 | head -1 | awk '{print $3}')
|