From 993fd8eee7003b5f84fe7498ce706521e857f8a6 Mon Sep 17 00:00:00 2001 From: Alex Frantz Date: Sat, 22 Nov 2025 16:54:31 -0500 Subject: [PATCH] fix api --- main.yml | 6 ------ roles/docker/tasks/main.yml | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/main.yml b/main.yml index ecb9ff7..d970a7a 100644 --- a/main.yml +++ b/main.yml @@ -61,12 +61,6 @@ - name: Deploy Drop import_tasks: tasks/drop.yml tags: drop_deploy - - name: Deploy Gluetun - import_tasks: tasks/gluetun.yml - tags: gluetun_deploy - - name: Deploy QBittorrent - import_tasks: tasks/qbittorrent.yml - tags: qbittorrent_deploy - name: Deploy Jackett import_tasks: tasks/jackett.yml tags: jackett_deploy diff --git a/roles/docker/tasks/main.yml b/roles/docker/tasks/main.yml index f9ad9b1..77710c9 100644 --- a/roles/docker/tasks/main.yml +++ b/roles/docker/tasks/main.yml @@ -35,7 +35,7 @@ name: "{{ name }}" recreate: true restart_policy: unless-stopped - pull: yes + pull: "{{ build is not defined }}" published_ports: "{{ published_ports | default(omit) }}" network_mode: "{{ network_mode | default(omit) }}" image: "{{ image.name }}:{{ image.tag }}"