From d0692f7379f88a84f685b45423d1ff2e01384043 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Thu, 2 Apr 2020 12:37:02 +0200 Subject: [PATCH] Ensure we have latest nginx --- scripts/installer.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/installer.sh b/scripts/installer.sh index a981a0eb9..8d030eca5 100755 --- a/scripts/installer.sh +++ b/scripts/installer.sh @@ -24,6 +24,11 @@ readonly ubuntu_codename=$(lsb_release -cs) readonly is_update=$(systemctl is-active box && echo "yes" || echo "no") +echo "==> installer: updating nginx" +# https://launchpad.net/~nginx +add-apt-repository ppa:nginx/stable --yes +apt-get install nginx-full -y + echo "==> installer: updating docker" if [[ $(docker version --format {{.Client.Version}}) != "18.09.2" ]]; then