From 20362a069ab6a9324ddd1b0779e57accef12b9a7 Mon Sep 17 00:00:00 2001 From: Alex Frantz Date: Fri, 21 Nov 2025 21:39:03 -0500 Subject: [PATCH] remove pull command, ansible does this --- scripts/run_updates.py | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/run_updates.py b/scripts/run_updates.py index b7bd01e..c9c2249 100644 --- a/scripts/run_updates.py +++ b/scripts/run_updates.py @@ -42,7 +42,6 @@ def main(): if ansible_tag and ansible_tag in deployable_tags: print(f"Updating '{image_name}' ({ansible_tag})..") - subprocess.run(f'docker image pull {image_name}', shell=True) subprocess.run(f'ANSIBLE_CONFIG=ansible.cfg ansible-playbook main.yml --tags {ansible_tag} --vault-password-file=~/.vault_pass.txt', shell=True) print("\nAll images updated, refreshing Cup")