From 898deda05fd560b476b3d5fb96d4c2ee5a3c5172 Mon Sep 17 00:00:00 2001 From: oskar Date: Thu, 21 May 2026 22:05:43 +0200 Subject: [PATCH] fix: deploy-frigate.sh use docker-compose v1 for chelsty-infra --- 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 fe1e8c7..657fa47 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 up -d --pull always" if [[ "$MODE" == "ssh" ]]; then echo "--- Deploying Frigate to $NODE ($TARGET) via SSH ---"