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 }}"