From 86d75b8de0fa66e9f6a7289d559aca609df0b87e Mon Sep 17 00:00:00 2001 From: Thomas Kleinendorst Date: Mon, 6 May 2024 10:54:06 +0200 Subject: [PATCH] Update the actual version (to 24.5.0) There is also a problem with the configuration in that it's hard to upgrade running containers, I added a note explaining this. --- roles/actual/tasks/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/roles/actual/tasks/main.yml b/roles/actual/tasks/main.yml index 96734ea..064d0a9 100644 --- a/roles/actual/tasks/main.yml +++ b/roles/actual/tasks/main.yml @@ -19,6 +19,8 @@ containers.podman.podman_container_info: name: actual-server register: actual_server_container_info +# This step doesn't work correctly when updating the contianer in any way. In this case it will simply skip the step. +# The easiest workaround is to remove the container altogether and rerun. - name: Start the actual container with correct systemd linking when: "'no such container' in actual_server_container_info.stderr" become: true @@ -27,7 +29,7 @@ - name: Start the Actual container containers.podman.podman_container: name: actual-server - image: docker.io/actualbudget/actual-server:24.4.0 + image: docker.io/actualbudget/actual-server:24.5.0 restart_policy: always publish: - 127.0.0.1:5006:5006