box: make lists be multiline and with same line ending
Better for adding/removing things this way. Signed-off-by: Manuel Mendez <mmendez@equinix.com>
This commit is contained in:
parent
8e5430bfd1
commit
5eceec91ed
@ -9,7 +9,8 @@ setup_docker() (
|
|||||||
ca-certificates \
|
ca-certificates \
|
||||||
curl \
|
curl \
|
||||||
gnupg-agent \
|
gnupg-agent \
|
||||||
software-properties-common
|
software-properties-common \
|
||||||
|
;
|
||||||
|
|
||||||
curl -fsSL https://download.docker.com/linux/ubuntu/gpg |
|
curl -fsSL https://download.docker.com/linux/ubuntu/gpg |
|
||||||
sudo apt-key add -
|
sudo apt-key add -
|
||||||
@ -22,7 +23,11 @@ setup_docker() (
|
|||||||
sudo add-apt-repository "$repo"
|
sudo add-apt-repository "$repo"
|
||||||
|
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -y docker-ce docker-ce-cli containerd.io
|
sudo apt-get install -y \
|
||||||
|
containerd.io \
|
||||||
|
docker-ce \
|
||||||
|
docker-ce-cli \
|
||||||
|
;
|
||||||
)
|
)
|
||||||
|
|
||||||
setup_docker_compose() (
|
setup_docker_compose() (
|
||||||
|
Loading…
Reference in New Issue
Block a user