From 195d25c6533e3f471ee775b43827a09eeeae32df Mon Sep 17 00:00:00 2001 From: Username Date: Tue, 17 Feb 2026 23:22:33 +0100 Subject: [PATCH] tools: use compose up -d instead of restart in handler compose restart reuses the existing container config; up -d recreates from compose.yml, picking up changes like renamed CLI flags. --- tools/playbooks/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/playbooks/deploy.yml b/tools/playbooks/deploy.yml index cba6bf1..d063826 100644 --- a/tools/playbooks/deploy.yml +++ b/tools/playbooks/deploy.yml @@ -54,5 +54,5 @@ handlers: - name: restart containers - ansible.builtin.raw: "uid=$(id -u {{ ppf_owner }}) && cd {{ ppf_base }} && sudo -u {{ ppf_owner }} XDG_RUNTIME_DIR=/run/user/$uid podman-compose restart" + ansible.builtin.raw: "uid=$(id -u {{ ppf_owner }}) && cd {{ ppf_base }} && sudo -u {{ ppf_owner }} XDG_RUNTIME_DIR=/run/user/$uid podman-compose up -d" when: ppf_restart | bool