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:
Manuel Mendez 2021-04-27 17:57:42 +00:00
parent 8e5430bfd1
commit 5eceec91ed
1 changed files with 7 additions and 2 deletions

View File

@ -9,7 +9,8 @@ setup_docker() (
ca-certificates \
curl \
gnupg-agent \
software-properties-common
software-properties-common \
;
curl -fsSL https://download.docker.com/linux/ubuntu/gpg |
sudo apt-key add -
@ -22,7 +23,11 @@ setup_docker() (
sudo add-apt-repository "$repo"
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() (