diff --git a/updater/src/index.js b/updater/src/index.js index 43b0af1..a52db79 100644 --- a/updater/src/index.js +++ b/updater/src/index.js @@ -223,11 +223,11 @@ async function runRemote(target, repoName, cmd, label) { } async function deploy(target, repoName) { - return runRemote(target, repoName, `cd ${target.path} && git pull && docker compose up -d --build`, 'deploy') + return runRemote(target, repoName, `cd ${target.path} && git pull && docker compose -f docker-compose.yml up -d --build`, 'deploy') } async function rebuild(target, repoName) { - return runRemote(target, repoName, `cd ${target.path} && docker compose up -d --build`, 'rebuild') + return runRemote(target, repoName, `cd ${target.path} && docker compose -f docker-compose.yml up -d --build`, 'rebuild') } // ── Routes ────────────────────────────────────────────────────────────────────