Skip to content

Commit

Permalink
docker: change pull param to bool
Browse files Browse the repository at this point in the history
  • Loading branch information
saltydk committed Feb 29, 2024
1 parent 3b20ff3 commit f869415
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion roles/kcptun_server/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
community.docker.docker_container:
name: kcptun-server
image: horjulf/kcptun:latest
pull: yes
pull: true
env:
TZ: "{{ tz }}"
volumes:
Expand Down
1 change: 1 addition & 0 deletions roles/recyclarr/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
'*': ignore
auto_remove: yes
state: started
pull: true
when: (not recyclarr_config.stat.exists)

- name: Create Docker container
Expand Down
1 change: 1 addition & 0 deletions roles/rocketchat/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
'*': ignore
auto_remove: yes
state: started
pull: true

- name: Create Docker container
ansible.builtin.include_tasks: "{{ resources_tasks_path }}/docker/create_docker_container.yml"
2 changes: 1 addition & 1 deletion roles/telegraf/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
community.docker.docker_container:
name: telegraf
image: "telegraf"
pull: yes
pull: true
command_handling: compatibility
container_default_behavior: compatibility
default_host_ip: ""
Expand Down
2 changes: 1 addition & 1 deletion roles/varken/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
community.docker.docker_container:
name: varken
image: "ghcr.io/thezak48/varken:develop"
pull: yes
pull: true
command_handling: compatibility
container_default_behavior: compatibility
default_host_ip: ""
Expand Down

0 comments on commit f869415

Please sign in to comment.