From 4f79fdd574ec94d11617688a4e08c023aecf03d5 Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Sun, 17 Sep 2017 16:27:28 +0200 Subject: [PATCH] shinyproxy: Force the pull of newer images. --- shinyproxy/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shinyproxy/tasks/main.yml b/shinyproxy/tasks/main.yml index 574f13a4..28e5ddd5 100644 --- a/shinyproxy/tasks/main.yml +++ b/shinyproxy/tasks/main.yml @@ -30,7 +30,7 @@ service: name=shinyproxy state=started enabled=yes - name: Pull the Docker images of shiny apps - docker_image: name={{ item.docker_image }} pull=yes state=present + docker_image: name={{ item.docker_image }} pull=yes state={{ item.image_state | default('present') }} force=yes with_items: '{{ shinyproxy_apps }}' when: shinyproxy_apps is defined tags: [ 'shinyproxy', 'shinyproxy_images' ]