Work around escaping curly braces for docker inspect
This commit is contained in:
parent
8f71c65b48
commit
8302d38358
1 changed files with 2 additions and 1 deletions
|
@ -8,7 +8,8 @@
|
|||
{%- if pull_by_digest|bool %}{{download.repo}}@sha256:{{download.sha256}}{%- else -%}{{download.repo}}:{{download.tag}}{%- endif -%}
|
||||
|
||||
- name: Register docker images info
|
||||
shell: "{{ docker_bin_dir }}/docker images -q | xargs {{ docker_bin_dir }}/docker inspect -f {% raw %}'{{.RepoTags}},{{.RepoDigests}}'{% endraw %}"
|
||||
raw: >-
|
||||
{{ docker_bin_dir }}/docker images -q | xargs {{ docker_bin_dir }}/docker inspect -f "{{ '{{' }} .RepoTags {{ '}}' }},{{ '{{' }} .RepoDigests {{ '}}' }}"
|
||||
register: docker_images_raw
|
||||
failed_when: false
|
||||
when: not download_always_pull|bool
|
||||
|
|
Loading…
Reference in a new issue