From cd4faadeb6108fc2ea668fc5eaef9126a96a5844 Mon Sep 17 00:00:00 2001 From: tteckster Date: Mon, 20 Nov 2023 09:06:43 -0500 Subject: [PATCH] Update dockge.sh create update path --- ct/dockge.sh | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/ct/dockge.sh b/ct/dockge.sh index 155ef799..64cc093e 100644 --- a/ct/dockge.sh +++ b/ct/dockge.sh @@ -53,11 +53,12 @@ function default_settings() { function update_script() { header_info -if [[ ! -d /var ]]; then msg_error "No ${APP} Installation Found!"; exit; fi -msg_info "Updating ${APP} LXC" -apt-get update &>/dev/null -apt-get -y upgrade &>/dev/null -msg_ok "Updated ${APP} LXC" +if [[ ! -d /opt/dockge ]]; then msg_error "No ${APP} Installation Found!"; exit; fi +msg_info "Updating ${APP}" +cd /opt/dockge +docker compose pull +docker compose up -d +msg_ok "Updated ${APP}" exit }