diff --git a/defaults.sh b/defaults.sh index 15b6aa7..4febf31 100755 --- a/defaults.sh +++ b/defaults.sh @@ -108,10 +108,10 @@ DEFAULT_DB_IMAGE="mariadb:10.8.3-jammy" export ENABLE_NGINX_CACHING="$ENABLE_NGINX_CACHING" # run the docker stack. -export GHOST_IMAGE="ghost:5.7.0" +export GHOST_IMAGE="ghost:5.8.2" export GHOST_DB_IMAGE="$DEFAULT_DB_IMAGE" -export NGINX_IMAGE="nginx:1.23.0" -export NEXTCLOUD_IMAGE="nextcloud:24.0.2" +export NGINX_IMAGE="nginx:1.23.1" +export NEXTCLOUD_IMAGE="nextcloud:24.0.3" export NEXTCLOUD_DB_IMAGE="$DEFAULT_DB_IMAGE" export GITEA_IMAGE="gitea/gitea:latest" diff --git a/deploy.sh b/deploy.sh index 9a1759f..0549eb4 100755 --- a/deploy.sh +++ b/deploy.sh @@ -18,7 +18,7 @@ check_dependencies wait-for-it dig rsync sshfs lxc docker-machine # TODO remove dependency on Docker-machine. That's what we use to provision VM on 3rd party vendors. Looking for LXD endpoint. # let's check to ensure the management machine is on the Baseline ubuntu 21.04 -if ! lsb_release -d | grep -q "Ubuntu 22.04 LTS"; then +if ! lsb_release -d | grep -q "Ubuntu 22.04"; then echo "ERROR: Your machine is not running the Ubuntu 22.04 LTS baseline OS on your management machine." exit 1 fi