From beb8b5cbaa80d592183d9f10204607a98ec4921e Mon Sep 17 00:00:00 2001 From: oskar Date: Thu, 21 May 2026 22:07:49 +0200 Subject: [PATCH] fix: remove --pull always flag incompatible with docker-compose v1 --- scripts/deploy/deploy-frigate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/deploy/deploy-frigate.sh b/scripts/deploy/deploy-frigate.sh index 657fa47..e9ca3f4 100755 --- a/scripts/deploy/deploy-frigate.sh +++ b/scripts/deploy/deploy-frigate.sh @@ -15,7 +15,7 @@ echo "TARGET: $TARGET" # Secrets must exist at /opt/homelab/config/frigate/frigate.env on the node # before first deploy. See config.yml for required variables. -DEPLOY_CMD="cd $REPO_PATH && git fetch origin && git checkout master && git pull origin master && cd $SERVICE_PATH && docker-compose up -d --pull always" +DEPLOY_CMD="cd $REPO_PATH && git fetch origin && git checkout master && git pull origin master && cd $SERVICE_PATH && docker-compose pull && docker-compose up -d" if [[ "$MODE" == "ssh" ]]; then echo "--- Deploying Frigate to $NODE ($TARGET) via SSH ---"