From 2d7ed5a420910567fb53c3abf99ecb4417c1627d Mon Sep 17 00:00:00 2001 From: Aidan Hembree <8049680+ahembree@users.noreply.github.com> Date: Tue, 7 May 2024 17:42:53 +0000 Subject: [PATCH] remove config of compose deployment --- roles/hmsdocker/defaults/main/container_settings.yml | 3 --- roles/hmsdocker/tasks/main.yml | 1 - 2 files changed, 4 deletions(-) diff --git a/roles/hmsdocker/defaults/main/container_settings.yml b/roles/hmsdocker/defaults/main/container_settings.yml index 2f8f7bc..7742efe 100644 --- a/roles/hmsdocker/defaults/main/container_settings.yml +++ b/roles/hmsdocker/defaults/main/container_settings.yml @@ -22,9 +22,6 @@ container_timezone: America/New_York container_uid: 1234 container_gid: 1234 -# This will download all of the containers before attempting to start them // default: "yes" -container_pull_images_first: yes - # This will expose each containers individual ports on the host (check the README for more info on which ports map to which containers) // default: "no" # If you disable traefik within the container map, the playbook will automatically override this setting and expose the ports container_expose_ports: no diff --git a/roles/hmsdocker/tasks/main.yml b/roles/hmsdocker/tasks/main.yml index fd97296..dfe68af 100644 --- a/roles/hmsdocker/tasks/main.yml +++ b/roles/hmsdocker/tasks/main.yml @@ -109,7 +109,6 @@ community.docker.docker_compose_v2: project_src: "{{ hms_docker_data_path }}" project_name: "{{ project_name }}" - pull: "{{ container_pull_images_first }}" state: "{{ hms_docker_compose_container_state }}" remove_orphans: "{{ container_remove_orphans }}" # env_file: "{{ compose_env.dest }}" # Commented out since this module defaults to using the .env file within the project_src location, but leaving just in case advanced users wish to point to a different location