always pull image
All checks were successful
Deploy Containers / Prepare (push) Successful in 4s

This commit is contained in:
2025-11-21 03:28:00 -05:00
parent 681a876dae
commit 2897d67957

View File

@@ -25,12 +25,6 @@
state: present
when: build is defined
- name: Pull latest Docker image
docker_image:
name: "{{ image.name }}"
tag: "{{ image.tag }}"
source: pull
- name: Create Docker Network
docker_network:
name: "{{ network_name }}"
@@ -41,6 +35,7 @@
name: "{{ name }}"
recreate: true
restart_policy: unless-stopped
pull: always
published_ports: "{{ published_ports | default(omit) }}"
network_mode: "{{ network_mode | default(omit) }}"
image: "{{ image.name }}:{{ image.tag }}"